Skip to content

Commit fe7a44a

Browse files
popindavibereaperzn
authored andcommitted
adding PATH test in main auter script and setting noninteractive apt mode (#191)
* adding PATH test in main auter script and setting DEBIAN_FRONTED=noninteractive in apt module * improve PATH testing on PR 191
1 parent d738fce commit fe7a44a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

auter

+5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ declare -x -i SKIPALLSCRIPTS=0
4646
declare -x -a SKIPPHASESCRIPTS
4747
declare -x -a SKIPSCRIPTNAMES
4848

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+
4954
function default_signal_handling() {
5055
trap 'rm -f "${PIDFILE}"' SIGINT SIGTERM
5156
}

auter.aptModule

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ function prepare_updates() {
7272
}
7373

7474
function apply_updates() {
75+
# Prevent dialog box as we are not running the update in interactive mode
76+
declare -x DEBIAN_FRONTEND=noninteractive
77+
7578
# Set the list of debs to be installed
7679
if [[ "${ONLYINSTALLFROMPREP}" == "yes" ]]; then
7780
local AVAILABLE_PACKAGES

0 commit comments

Comments
 (0)