Skip to content

Commit

Permalink
init: cleaner logging
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Di Maio <[email protected]>
  • Loading branch information
89luca89 committed Aug 15, 2023
1 parent dd6ce19 commit 065a096
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions distrobox-init
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,9 @@ fi
###############################################################################

###############################################################################
printf "distrobox: Setting up package manager exceptions...\n"
if [ "${init}" -eq 0 ]; then
printf "distrobox: Setting up package manager exceptions...\n"
fi

# In case of an RPM distro, we can specify that our bind_mount directories
# are in fact net shares. This prevents conflicts during package installations.
Expand Down Expand Up @@ -1705,7 +1707,7 @@ touch /etc/passwd.done
###############################################################################

###############################################################################
printf "distrobox: setting up skel...\n"
printf "distrobox: Setting up skel...\n"

if [ -n "${DISTROBOX_HOST_HOME-}" ] && [ -d "/etc/skel" ]; then
skel_files="$(find /etc/skel/ -type f || :)"
Expand All @@ -1730,10 +1732,12 @@ fi
###############################################################################

###############################################################################
printf "distrobox: Executing init hooks...\n"
# execute eventual init hooks if specified
# shellcheck disable=SC2086
eval ${init_hook}
if [ -n "${init_hook}" ]; then
printf "distrobox: Executing init hooks...\n"
# execute eventual init hooks if specified
# shellcheck disable=SC2086
eval ${init_hook}
fi
###############################################################################

###############################################################################
Expand Down

0 comments on commit 065a096

Please sign in to comment.