diff options
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/network b/src/network index f1a8ad9..69bb1e3 100644 --- a/src/network +++ b/src/network @@ -13,12 +13,15 @@ load_profile() report_fail "Profile \"$1\" does not exist" return 1 fi + report_debug "Loading profile $1" . "$PROFILE_DIR/$1" + report_debug "Configuring interface $INTERFACE" if [[ -z "$INTERFACE" ]]; then report_fail "Profile missing an interface to configure" return 1 fi if [[ -f "$IFACE_DIR/$INTERFACE" ]]; then + report_debug "Interface level configuration enabled: $IFACE_DIR/$INTERFACE" . "$IFACE_DIR/$INTERFACE" . "$PROFILE_DIR/$1" # we want profile settings to override, so need to source profile again fi |