summaryrefslogtreecommitdiff
path: root/configs/mate-openrc/root-image/root/.scriptsInstallation/language/es/userAccount.sh
diff options
context:
space:
mode:
Diffstat (limited to 'configs/mate-openrc/root-image/root/.scriptsInstallation/language/es/userAccount.sh')
-rwxr-xr-xconfigs/mate-openrc/root-image/root/.scriptsInstallation/language/es/userAccount.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/configs/mate-openrc/root-image/root/.scriptsInstallation/language/es/userAccount.sh b/configs/mate-openrc/root-image/root/.scriptsInstallation/language/es/userAccount.sh
deleted file mode 100755
index 4ed7437..0000000
--- a/configs/mate-openrc/root-image/root/.scriptsInstallation/language/es/userAccount.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-user=$(cat /temporal | grep "userName")
-
-password=$(dialog --stdout --passwordbox "Introduce la contraseñara para el usuario ${user#*=}" 8 40)
-
-while [[ $password != $password2 ]]; do
- password2=$(dialog --stdout --passwordbox "Repite la contraseña" 8 40)
-done
-
-useradd -m -g users -G "wheel" -s /bin/bash -p $(openssl passwd $password) ${user#*=}
-
-exit