diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2020-02-14 04:23:57 -0600 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2020-02-14 04:23:57 -0600 |
commit | 8ca998d9c27188e491761c3b99a222e842d6e44e (patch) | |
tree | 4f402bb5e4b7e13e373263f3c1a5d6671794893a /scripts/debian_roll | |
parent | 814f256f9055fd4c90ef19ffbde3f852f2927939 (diff) |
krb5 server and client successfully starts
Diffstat (limited to 'scripts/debian_roll')
-rwxr-xr-x | scripts/debian_roll | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/scripts/debian_roll b/scripts/debian_roll index 56c5e5b..041baf4 100755 --- a/scripts/debian_roll +++ b/scripts/debian_roll @@ -3,7 +3,8 @@ set -e NAME=$1 USER=tom -PASS=durr +PASS=tom +ROOT_PASS=root # init lxc-create -n $NAME -t download -- --dist debian --release buster --arch amd64 @@ -12,11 +13,13 @@ lxc-start -n $NAME sleep 15 # install basics -lxc-attach -n $NAME -- apt update -lxc-attach -n $NAME -- apt dist-upgrade -lxc-attach -n $NAME -- apt install -y sudo openssh-server x11-xserver-utils +lxc-attach -n $NAME -- apt-get update +lxc-attach -n $NAME -- apt-get dist-upgrade +lxc-attach -n $NAME -- apt-get install -y apt-utils +lxc-attach -n $NAME -- apt-get install -y sudo openssh-server x11-xserver-utils -# setup user +# setup users +lxc-attach -n $NAME -- bash -c 'echo -e "'$ROOT_PASS'\n'$ROOT_PASS'" | passwd' lxc-attach -n $NAME -- adduser $USER --gecos "" --disabled-password lxc-attach -n $NAME -- bash -c 'echo -e "'$PASS'\n'$PASS'" | passwd $USER' |