6 lines
257 B
Bash
Executable file
6 lines
257 B
Bash
Executable file
#!/bin/bash
|
|
set -eo pipefail
|
|
logger -t linuxinstaller "Exécution de linuxinstaller-firstboot.sh"
|
|
until host git.libretic.fr; do sleep 5; done
|
|
/opt/linuxinstaller/linuxinstaller.sh --tags firstboot \
|
|
&& systemctl disable linuxinstaller-firstboot.service
|