home · contact · privacy
Enhance user home dir setup scripts.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 6 May 2019 17:46:36 +0000 (19:46 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 6 May 2019 17:46:36 +0000 (19:46 +0200)
buster/setup_scripts/setup_eeepc.sh
buster/setup_scripts/setup_home_eeepc.sh [new file with mode: 0755]
buster/setup_scripts/setup_secrets.sh [changed mode: 0644->0755]

index f9ca1a37b9aae5de64af47cd3aeb12e37d651f48..3ab93866437af1a1fc0d572f1ae191234191fad5 100755 (executable)
@@ -48,9 +48,8 @@ cd "${setup_scripts_dir}"
 adduser --disabled-password --gecos "" plom
 usermod -a -G sudo plom
 if [ ! -d "/home/plom" ]; then
-    su -c "cd && git clone https://plomlompom.com/repos/clone/config" plom
-    su -c "~/config/buster/setup_scripts/copy_dirtree.sh ~/config/buster/home_files ~ minimal user_eeepc" plom
-    su -c "curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/78e662efefd1f4af2bdb2a53edecf03b535b997b/native/install.sh | bash" plom
-    echo "As tridactyl user, don't forget to do :source on the first Firefox run and then re-start."
+    cp setup_home_eeepc.sh /home/plom
+    chown plom:plom /home/plom/setup_home_eeepc.sh
+    su -c "cd && ./setup_home_eeepc.sh"
 fi
 passwd plom
diff --git a/buster/setup_scripts/setup_home_eeepc.sh b/buster/setup_scripts/setup_home_eeepc.sh
new file mode 100755 (executable)
index 0000000..03bc853
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+cd
+public_repos_dir=~/public_repos
+mkdir -p "${public_repos_dir}"
+if [ ! -d "/home/plom/${public_repos_dir}/config" ]; then
+    cd "${public_repos_dir}"
+    git clone https://plomlompom.com/repos/clone/config
+curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/78e662efefd1f4af2bdb2a53edecf03b535b997b/native/install.sh | bash
+echo "As tridactyl user, don't forget to do :source on the first Firefox run and then re-start."
old mode 100644 (file)
new mode 100755 (executable)