home · contact · privacy
eefc350f48b922ccfadb4b923adf65cd60187bdc
[config] / buster / setup_scripts / setup_server.sh
1 #!/bin/sh
2 # Next setup steps for a server whose login policy has just been set from
3 # the outside via ./init_user_and_keybased_login.sh.
4 set -e
5
6 # Provide maximum input for set_hostname_and_fqdn.sh.
7 if [ "$#" -ne 2 ]; then
8     echo 'Need exactly two arguments (hostname, FQDN).'
9     false
10 fi
11 hostname="$1"
12 fqdn="$2"
13
14 # Set up system without user environment.
15 config_tree_prefix="${HOME}/config/buster"
16 setup_scripts_dir="${config_tree_prefix}/setup_scripts"
17 cd "${setup_scripts_dir}"
18 ./setup.sh "${hostname}" "${fqdn}" server
19
20 # If we have not yet set the shell for user plom, ensure it here. This
21 # is mostly for convenience.
22 usermod -s /bin/bash plom
23
24 # Enable firewall.
25 systemctl enable nftables.service