commit b8f2621e967117ce5ca5d40496fd10a573551840 parent 552d8841b691a8dca2ee0beb705cfe1d3e3ec111 Author: MS <ms@taler.net> Date: Tue, 5 Dec 2023 14:30:24 +0100 move installation before software usage Diffstat:
| M | netzbon/main.sh | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/netzbon/main.sh b/netzbon/main.sh @@ -30,6 +30,12 @@ ask_questions # END USER INTERACTION +# Check if the user is root, otherwise EXIT. +check_user + +# Installation of deb packages required +. install_packages.sh + # Check DNS settings if ! ping -c1 "exchange.${DOMAIN_NAME}" &>/dev/null; then say "Could not ping exchange.${DOMAIN_NAME}." @@ -60,12 +66,6 @@ if test -z "${PROTO:-}"; then echo "PROTO=$PROTO">>config/internal.conf fi -# Check if the user is root, otherwise EXIT. -check_user - -# Installation of deb packages required -. install_packages.sh - config_services # Final message to the user