Commit 685398a1 by Guillaume ZITTA Committed by Stéphane Graber

enable sshd by default like other templates

parent 93903d99
...@@ -299,6 +299,7 @@ container_setup() { ...@@ -299,6 +299,7 @@ container_setup() {
container_net && \ container_net && \
container_hostname && \ container_hostname && \
container_auth && \ container_auth && \
container_sshd && \
container_conf container_conf
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
die 1 "container_setup(): one step didn't complete, sorry\n" die 1 "container_setup(): one step didn't complete, sorry\n"
...@@ -649,6 +650,14 @@ container_auth() ...@@ -649,6 +650,14 @@ container_auth()
printf " => done.\n" printf " => done.\n"
} }
container_sshd() {
printf "#### container_sshd(): enabling sshd... \n"
chroot "${rootfs}" rc-update add sshd || die 1 "failed to enable sshd\n"
printf " => done.\n"
}
################################################################################ ################################################################################
# lxc configuration files # lxc configuration files
################################################################################ ################################################################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment