7 lines
252 B
Bash
7 lines
252 B
Bash
|
#!/bin/bash
|
||
|
set -eo pipefail
|
||
|
logger -t libreticmenu "Exécution de libreticmenu.sh --runCompliance"
|
||
|
until host git.libretic.fr; do sleep 5; done
|
||
|
/opt/libreticmenu/libreticmenu.sh --runCompliance \
|
||
|
&& systemctl disable libreticmenu-firstboot.service
|