summaryrefslogtreecommitdiff
path: root/configs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2017-11-06 17:18:46 -0300
committerDavid P <megver83@parabola.nu>2017-11-06 17:18:46 -0300
commit703af9dc9078d41909af18e2eab20a7963414d0d (patch)
treed25cb89248cbaf4ef1bae4648966537e73c814ab /configs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh
parent1bf80f77f7a8bb4ffdd203c60662421e3f8f589b (diff)
Add configs/lxde-openrc
Remove configs/mate and configs/mate-openrc
Diffstat (limited to 'configs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh')
-rwxr-xr-xconfigs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/configs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh b/configs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh
deleted file mode 100755
index aa1d33a..0000000
--- a/configs/mate-openrc/root-image/root/.scriptsInstallation/language/gl/userAccount.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-user=$(cat /temporal | grep "userName")
-
-password=$(dialog --stdout --passwordbox "Introduce o contrasinal para o usuario ${user#*=}" 8 40)
-
-while [[ $password != $password2 ]]; do
- password2=$(dialog --stdout --passwordbox "Repite o contrasinal" 8 40)
-done
-
-useradd -m -g users -G "wheel" -s /bin/bash -p $(openssl passwd $password) ${user#*=}
-
-exit