summaryrefslogtreecommitdiff
path: root/lxc/debian_roll
blob: 5ae7b7e63b3fa97b37d206010b3bee8758e89fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
set -e

NAME=$1
USER=tom
PASS=durr

# init
lxc-create -n $NAME -t download -- --dist debian --release buster --arch amd64
lxc-start  -n $NAME
sleep 10

# 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

# setup user
lxc-attach -n $NAME -- adduser $USER --gecos "" --disabled-password
lxc-attach -n $NAME -- bash -c 'echo -e "'$PASS'\n'$PASS'" | passwd $USER'

# setup x11 forwarding
# lxc-attach -n $NAME -- bash -c 'echo "AllowTcpForwarding yes" >> /etc/ssh/sshd_config'
# lxc-attach -n $NAME -- bash -c 'echo "X11UseLocalhost yes" >> /etc/ssh/sshd_config'
# lxc-attach -n $NAME -- systemctl restart sshd

# display info
lxc-info -n $NAME