X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/move_up?a=blobdiff_plain;ds=sidebyside;f=all_new_2018%2Fsetup_server.sh;h=e4fbaa2700aa9efbdc3f38027c6861fb735d6f0a;hb=d57ddacf1935302793b7e11f5ab1ea8fbda51a09;hp=7778b9a314aaffcb17944448767000ac9fddd89b;hpb=28f4d6ac2c1dc4a21bd05a6c1eff040c421059e5;p=config diff --git a/all_new_2018/setup_server.sh b/all_new_2018/setup_server.sh index 7778b9a..e4fbaa2 100755 --- a/all_new_2018/setup_server.sh +++ b/all_new_2018/setup_server.sh @@ -3,10 +3,21 @@ # the outside via ./init_user_and_keybased_login.sh. set -e -# Adapt /etc/ to our needs by symlinking into ./linkable_etc_files. This +# Provide maximum input for set_hostname_and_fqdn.sh. +if [ "$#" -ne 2 ]; then + echo "Need exactly two arguments (hostname, FQDN)." + false +fi +hostname="$1" +fqdn="$2" + +# Adapt /etc/ to our needs by hardlinking into ./linkable_etc_files. This # will set basic configurations affecting following steps, such as setup # of APT and the locale selection, so needs to be right at the beginning. -./symlink_etc.sh all server +./hardlink_etc.sh all server + +# Set hostname and FQDN. +./set_hostname_and_fqdn.sh "${hostname}" "${fqdn}" # Ensure package installation state as defined by what packages are # defined as required by Debian policy and by settings in ./apt-mark/. @@ -19,7 +30,7 @@ apt update apt -y dist-upgrade # Set Berlin localtime. -#ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime +ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime # If we have not yet set the shell for user plom, ensure it here. This # is mostly for convenience.