File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,11 @@ declare -x -i SKIPALLSCRIPTS=0
46
46
declare -x -a SKIPPHASESCRIPTS
47
47
declare -x -a SKIPSCRIPTNAMES
48
48
49
+ # Adding extra super-user PATHS if required
50
+ for p in /usr/local/sbin /usr/sbin /sbin; do
51
+ [[ ! ${PATH} =~ (^| :)${p} (:| $) ]] && declare -x PATH=" ${p} :${PATH} "
52
+ done
53
+
49
54
function default_signal_handling() {
50
55
trap ' rm -f "${PIDFILE}"' SIGINT SIGTERM
51
56
}
Original file line number Diff line number Diff line change @@ -72,6 +72,9 @@ function prepare_updates() {
72
72
}
73
73
74
74
function apply_updates() {
75
+ # Prevent dialog box as we are not running the update in interactive mode
76
+ declare -x DEBIAN_FRONTEND=noninteractive
77
+
75
78
# Set the list of debs to be installed
76
79
if [[ " ${ONLYINSTALLFROMPREP} " == " yes" ]]; then
77
80
local AVAILABLE_PACKAGES
You can’t perform that action at this time.
0 commit comments