ubuntu 18.04 doesn't seem to have /etc/rc.local anymore
This commit is contained in:
parent
3e571b6e80
commit
f4a19dfad3
1 changed files with 10 additions and 8 deletions
|
@ -55,14 +55,16 @@ if ! test -d /var/cache/cosmos/repo; then
|
|||
cosmos clone "$cmd_repo"
|
||||
fi
|
||||
|
||||
# re-run cosmos at reboot until it succeeds - use bash -l to get working proxy settings
|
||||
grep -v "^exit 0" /etc/rc.local > /etc/rc.local.new
|
||||
(echo ""
|
||||
echo "test -f /etc/run-cosmos-at-boot && (bash -l cosmos -v update; bash -l cosmos -v apply && rm /etc/run-cosmos-at-boot)"
|
||||
echo ""
|
||||
echo "exit 0"
|
||||
) >> /etc/rc.local.new
|
||||
mv -f /etc/rc.local.new /etc/rc.local
|
||||
if [ -f /etc/rc.local ]; then
|
||||
# re-run cosmos at reboot until it succeeds - use bash -l to get working proxy settings
|
||||
grep -v "^exit 0" /etc/rc.local > /etc/rc.local.new
|
||||
(echo ""
|
||||
echo "test -f /etc/run-cosmos-at-boot && (bash -l cosmos -v update; bash -l cosmos -v apply && rm /etc/run-cosmos-at-boot)"
|
||||
echo ""
|
||||
echo "exit 0"
|
||||
) >> /etc/rc.local.new
|
||||
mv -f /etc/rc.local.new /etc/rc.local
|
||||
fi
|
||||
|
||||
touch /etc/run-cosmos-at-boot
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue