home · contact · privacy
Fix. master
authorChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 21:54:08 +0000 (23:54 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 21:54:08 +0000 (23:54 +0200)
bookworm/aptmark/server
bookworm/scripts/lib/expect_n_args [new file with mode: 0644]
bookworm/scripts/lib/setup_users
bookworm/scripts/setup_server.sh
testing/home/desktop/.local/bin/borgplom
testing/scripts/lib/expect_n_args [changed from file to symlink]

index 70e8d2b3e649de22375b2f84e1d89a3bebd3863c..a072e94895c4d7327582ddc83ff4e96f7be44c85 100644 (file)
@@ -2,3 +2,5 @@
 openssh-server
 # firewalling
 nftables
+# for playing nicely with ssh sessions via the foot terminal
+foot-terminfo
diff --git a/bookworm/scripts/lib/expect_n_args b/bookworm/scripts/lib/expect_n_args
new file mode 100644 (file)
index 0000000..950671a
--- /dev/null
@@ -0,0 +1,21 @@
+. lib/abort
+
+expect_n_args() {
+    _N_MIN_ARGS="$1"
+    _N_MAX_ARGS="$2"
+    _USAGE="$3"
+    shift 3
+    _ABORT_MSG=
+    if [ "$#" -lt "${_N_MIN_ARGS}" ]; then
+        _ABORT_MSG="missing arguments (got $# instead of ${_N_MAX_ARGS})."
+    elif [ "$#" -gt "${_N_MAX_ARGS}" ]; then
+        shift "${_N_MAX_ARGS}"
+        _ABORT_MSG="unexpected arguments beyond expected number (${_N_MAX_ARGS}): $@"
+    fi
+    if [ ! -z "${_ABORT_MSG}" ]; then 
+        if [ ! -z "${_USAGE}" ]; then 
+            _ABORT_MSG="${_ABORT_MSG}\nExpected arguments: ${_USAGE}"
+        fi 
+        abort "Aborting due to ${_ABORT_MSG}"
+    fi
+}
index cc095673e1f1eb1afe7d1460d8294b8c037e4fe5..0d8f21b0b059c703fcfd9e71521c0625ab4a62b1 100644 (file)
@@ -1,21 +1,21 @@
 . lib/copy_dirtree
-. lib/constants_user
+. lib/constants_user  # PATH_USER_HOME, USERNAME
 
 setup_users() {
-    MIN_TAGS="$1"
-    TAGS_USER="$2"
-    PATH_CONF_HOME=../home
-    PATH_USER_BIN="${PATH_USER_HOME}/.local/bin"
+    _MIN_TAGS="$1"
+    _TAGS_USER="$2"
+    _PATH_CONF_HOME=../home
+    _PATH_USER_BIN="${PATH_USER_HOME}/.local/bin"
 
     echo "\nSetting up root user's home directory."
-    copy_dirtree "${PATH_CONF_HOME}" '/root' ${MIN_TAGS} root
+    copy_dirtree "${_PATH_CONF_HOME}" '/root' ${_MIN_TAGS} root
 
     echo "\nSetting up user ${USERNAME}."
     adduser --disabled-password --gecos "" "${USERNAME}"
     usermod -a -G sudo "${USERNAME}"
-    copy_dirtree "${PATH_CONF_HOME}" "${PATH_USER_HOME}" ${MIN_TAGS} ${TAGS_USER}
-    mkdir -p "${PATH_USER_BIN}"
-    cd "${PATH_USER_BIN}"
+    copy_dirtree "${_PATH_CONF_HOME}" "${PATH_USER_HOME}" ${_MIN_TAGS} ${_TAGS_USER}
+    mkdir -p "${_PATH_USER_BIN}"
+    cd "${_PATH_USER_BIN}"
     ln -s ../../.plomlib.sh lib
     cd - > /dev/null
     chown -R "${USERNAME}:${USERNAME}" "${PATH_USER_HOME}"
index 305fb3672717279d790dc535b713f05d74d9bcbb..1c79eddf0aff981ae8d1a5658c26a780963270e2 100755 (executable)
@@ -6,13 +6,13 @@ cd $(dirname "$0")
 . lib/constants_user  # USERNAME
 . lib/copy_dirtree
 . lib/determine_ip
-. lib/expect_min_n_args
+. lib/expect_n_args
 . lib/init_packages
 . lib/setup_users
 
 MIN_TAGS='all server'
 
-expect_min_n_args 2 '(hostname, FQDN)' "$@"
+expect_n_args 2 2 'HOSTNAME, FQDN' $@
 HOSTNAME="$1"
 FQDN="$2"
 
@@ -20,6 +20,7 @@ PATH_REL_ETC=etc
 PATH_CONF_ETC="${PATH_CONF}/${PATH_REL_ETC}"
 PATH_ETC="/${PATH_REL_ETC}"
 PATH_HOSTS="${PATH_ETC}/hosts"
+PATH_BORG_HOME=/home/borg
 
 init_packages "${MIN_TAGS}"
 
@@ -43,5 +44,10 @@ mkdir -p "${PATH_USER_SSH}"
 mv "/root/${PATH_REL_SSH}/authorized_keys" "${PATH_USER_SSH}/"
 chown -R "${USERNAME}:${USERNAME}" "${PATH_USER_SSH}"
 
+echo '\nSetting up minimal borg user.'
+adduser --system --home "${PATH_BORG_HOME}" --shell /bin/sh borg
+cp -a "${PATH_USER_SSH}" "${PATH_BORG_HOME}/"
+chown -R borg:nogroup "${PATH_BORG_HOME}/${PATH_REL_SSH}"
+
 echo '\nEnabling the firewall.'
 systemctl enable nftables.service
index f20e1e5acc7ea628907532d717eb6ae12ac1d15b..e6603770e9acff6ed4a326d0856ca2b5186490e4 100755 (executable)
@@ -14,7 +14,7 @@ USAGE_LINES='COMMAND [ARGUMENT]...'
 
 PATH_BORG_CONF_SECURITY="${PATH_BORG_CONF}/security"
 PATH_BORG_CONF_KEYS="${PATH_BORG_CONF}/keys"
-location_from_servername() { printf 'ssh://plom@%s/./borg' "$1"; }
+location_from_servername() { printf 'ssh://borg@%s/./borgrepo' "$1"; }
 servername_from_location() { echo "$1" | cut -d'/' -f3 | cut -d'@' -f2; }
 path_repo_location() { printf '%s' "${PATH_BORG_CONF_SECURITY}/${1}/location"; }
 
deleted file mode 100644 (file)
index 950671ad59cbb1e0badf304e206844066c59e569..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1,21 +0,0 @@
-. lib/abort
-
-expect_n_args() {
-    _N_MIN_ARGS="$1"
-    _N_MAX_ARGS="$2"
-    _USAGE="$3"
-    shift 3
-    _ABORT_MSG=
-    if [ "$#" -lt "${_N_MIN_ARGS}" ]; then
-        _ABORT_MSG="missing arguments (got $# instead of ${_N_MAX_ARGS})."
-    elif [ "$#" -gt "${_N_MAX_ARGS}" ]; then
-        shift "${_N_MAX_ARGS}"
-        _ABORT_MSG="unexpected arguments beyond expected number (${_N_MAX_ARGS}): $@"
-    fi
-    if [ ! -z "${_ABORT_MSG}" ]; then 
-        if [ ! -z "${_USAGE}" ]; then 
-            _ABORT_MSG="${_ABORT_MSG}\nExpected arguments: ${_USAGE}"
-        fi 
-        abort "Aborting due to ${_ABORT_MSG}"
-    fi
-}
new file mode 120000 (symlink)
index 0000000000000000000000000000000000000000..5c37e825f5596e11b427057afebbbb2c759de212
--- /dev/null
@@ -0,0 +1 @@
+../../../bookworm/scripts/lib/expect_n_args
\ No newline at end of file