summaryrefslogtreecommitdiff
path: root/configs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2017-10-16 18:52:38 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2017-11-16 11:13:13 -0500
commitcfb9207ead40dc9b12e37578fab2641f213b3640 (patch)
treea68275b10d8dba78a79803984661ba1ade985067 /configs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh
parentf1a8d3007a018cde15b6c49f761a9eac2543a23c (diff)
delete edition-specific configs
* the original intention was for each edition on separate branches * this commit builds only the main CLI ISO as originally intended * preparing for editions to be specified as CLI args to master script
Diffstat (limited to 'configs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh')
-rwxr-xr-xconfigs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/configs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh b/configs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh
deleted file mode 100755
index a9551d8..0000000
--- a/configs/lxde-openrc/root-image/root/.scriptsInstallation/language/en/userAccount.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-user=$(cat /temporal | grep "userName")
-
-password=$(dialog --stdout --passwordbox "Insert ${user#*=} password" 8 40)
-
-while [[ $password != $password2 ]]; do
- password2=$(dialog --stdout --passwordbox "Reply password" 8 40)
-done
-
-useradd -m -g users -G "wheel" -s /bin/bash -p $(openssl passwd $password) ${user#*=}
-
-exit