From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 19 Nov 2018 15:06:27 +0000 (+0100)
Subject: WIP.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdb.prefix%7D%7D/%7B%7Bprefix%7D%7D/balance2?a=commitdiff_plain;h=a929990d8253e70799f95b1ff8a74b3a6361a9e9;p=config

WIP.
---

diff --git a/all_new_2018/apt-mark/server b/all_new_2018/apt-mark/server
index 055ae7c..c51942b 100644
--- a/all_new_2018/apt-mark/server
+++ b/all_new_2018/apt-mark/server
@@ -2,3 +2,5 @@
 openssh-server
 # provides /etc/inputrc and understanding of ctrl+arrow key combos
 readline-common
+# provides letsencrypt
+certbot
diff --git a/all_new_2018/setup_server.sh b/all_new_2018/setup_server.sh
index 55635f7..55650aa 100755
--- a/all_new_2018/setup_server.sh
+++ b/all_new_2018/setup_server.sh
@@ -3,11 +3,22 @@
 # the outside via ./init_user_and_keybased_login.sh.
 set -e
 
+# 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 symlinking 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
 
+# 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/.
 apt update