Wait for filesystem resize on FistBOOT and change /etc/rc.local with ISOconfig

This commit is contained in:
qo-op 2020-12-15 13:00:36 +01:00
parent 47c39cc42e
commit 4ce1b63cd9
1 changed files with 14 additions and 0 deletions

14
FirstBOOT.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
########################################################################
# Author: Fred (support@qo-op.com)
# Version: 2020.12.05
# License: AGPL-3.0 (https://choosealicense.com/licenses/agpl-3.0/)
########################################################################
# FirstBOOT.sh
# Let AstrXbian ISO resize Filesystem
# Change /etc/rc.local to activate ISOconfig.sh n next reboot
#
sudo sed -i "s/FirstBOOT/ISOconfig/g" /etc/rc.local
exit 0