X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=buster%2Fsetup_scripts%2Fsetup_server.sh;h=fa4cc6e84433afc0355e2d73a7c37e2cfcc9f5e5;hb=f71f9bf25bef788af915b279f463cf35ff086a53;hp=4eeaec495f8b9776fdb912fc76f5a971e2180446;hpb=a993e01131dcc84616f8352b2b2687f582a389cd;p=config diff --git a/buster/setup_scripts/setup_server.sh b/buster/setup_scripts/setup_server.sh index 4eeaec4..fa4cc6e 100755 --- a/buster/setup_scripts/setup_server.sh +++ b/buster/setup_scripts/setup_server.sh @@ -4,22 +4,23 @@ set -e # Provide maximum input for set_hostname_and_fqdn.sh. -if [ "$#" -ne 2 ]; then +if [ "$#" -lt 2 ]; then echo 'Need exactly two arguments (hostname, FQDN).' false fi hostname="$1" fqdn="$2" +additional_arg="$3" # Set up system without user environment. config_tree_prefix="${HOME}/config/buster" setup_scripts_dir="${config_tree_prefix}/setup_scripts" cd "${setup_scripts_dir}" -./setup.sh "${hostname}" "${fqdn}" server +./setup.sh "${hostname}" "${fqdn}" server "${additional_arg}" # If we have not yet set the shell for user plom, ensure it here. This # is mostly for convenience. usermod -s /bin/bash plom -# We want to be able to use ALL our servers as borg backup destinations. -apt -y install borgbackup +# Enable firewall. +systemctl enable nftables.service