bundles/apt: fix "set -x" call
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
c548a88ee7
commit
68fed2439d
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -xeuo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
# With systemd, we can force logging to the journal. This is better than
|
# With systemd, we can force logging to the journal. This is better than
|
||||||
# spamming the world with cron mails. You can then view these logs using
|
# spamming the world with cron mails. You can then view these logs using
|
||||||
|
@ -13,6 +13,8 @@ then
|
||||||
exec 2> >(logger -t upgrade-and-reboot -p user.error)
|
exec 2> >(logger -t upgrade-and-reboot -p user.error)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
statusfile="/var/tmp/unattended_upgrades.status"
|
statusfile="/var/tmp/unattended_upgrades.status"
|
||||||
# Workaround, because /var/tmp is usually 1777
|
# Workaround, because /var/tmp is usually 1777
|
||||||
[[ "$UID" == 0 ]] && chown root:root "$statusfile"
|
[[ "$UID" == 0 ]] && chown root:root "$statusfile"
|
||||||
|
|
Loading…
Reference in a new issue