7 lines
262 B
Bash
7 lines
262 B
Bash
|
#!/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 --update --conformite \
|
||
|
&& systemctl disable linuxinstaller-firstboot.service
|