From 01c14daaf7fc7251a6936b2d07de910cb188dee9 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 29 Mar 2017 19:11:36 -0300 Subject: Support for custom username and password at kvmx-create --- kvmx-create | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'kvmx-create') 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 -- cgit v1.2.3