diff options
Diffstat (limited to 'kvmx-create')
-rwxr-xr-x | kvmx-create | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kvmx-create b/kvmx-create index 38405a3..7f9270d 100755 --- a/kvmx-create +++ b/kvmx-create @@ -105,6 +105,8 @@ function kvmx_config { kvmx_user_config mirror http://http.debian.net/debian/ "Debian mirror" kvmx_user_config ssh_support y "Administration using passwordless SSH (y/n)" kvmx_user_config ssh_custom y "Setup a custom SSH keypair (y/n)" + kvmx_user_config user user "Initial user name" + kvmx_user_config password $RANDOM "Initial user password" } # Load config file @@ -240,7 +242,7 @@ function kvmx_create_custom { echo 'root:root' | kvmx_sudo_run chroot $WORK/ chpasswd # Initial user - kvmx_sudo_run chroot $WORK/ useradd user -G sudo -s /bin/bash + kvmx_sudo_run chroot $WORK/ useradd $user -G sudo -s /bin/bash if [ "$ssh_support" == "y" ]; if [ "$ssh_custom" == "y" ]; then @@ -259,7 +261,7 @@ function kvmx_create_custom { fi kvmx_sudo_run chroot $WORK/ chown -R user.user /home/user - echo 'user:user' | kvmx_sudo_run chroot $WORK/ chpasswd + echo "$user:$password" | kvmx_sudo_run chroot $WORK/ chpasswd # Networking cat <<-EOF | $SUDO tee $WORK/etc/network/interfaces.d/ens3 > /dev/null |