mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
13 lines
272 B
Text
Executable file
13 lines
272 B
Text
Executable file
#!/usr/bin/expect
|
|
|
|
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set timeout -1
|
|
|
|
spawn python3 rootfs.py --chroot
|
|
expect {
|
|
"not syncing: Attempted to kill init" {}
|
|
"Bootstrapping completed." {}
|
|
}
|