From: Dimitri John Ledkov Date: Tue, 29 Aug 2017 14:11:55 +0000 (+0100) Subject: templates/ubuntu: conditionally move upstart ssh job, as it is now optional. X-Git-Tag: lxc-2.0.9~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d99d8dbc5d8c88c83e7ab814615db7ccfd8b0ed9;p=thirdparty%2Flxc.git templates/ubuntu: conditionally move upstart ssh job, as it is now optional. Mimic the code from the debian template. Signed-off-by: Dimitri John Ledkov --- diff --git a/templates/lxc-ubuntu.in b/templates/lxc-ubuntu.in index ad9b73b23..226427d9e 100644 --- a/templates/lxc-ubuntu.in +++ b/templates/lxc-ubuntu.in @@ -152,13 +152,20 @@ exit 101 EOF chmod +x $rootfs/usr/sbin/policy-rc.d + if [ -f "$rootfs/etc/init/ssh.conf" ]; then + mv "$rootfs/etc/init/ssh.conf" "$rootfs/etc/init/ssh.conf.disabled" + fi + rm -f $rootfs/etc/ssh/ssh_host_*key* - mv $rootfs/etc/init/ssh.conf $rootfs/etc/init/ssh.conf.disabled + DPKG_MAINTSCRIPT_PACKAGE=openssh DPKG_MAINTSCRIPT_NAME=postinst chroot $rootfs /var/lib/dpkg/info/openssh-server.postinst configure - mv $rootfs/etc/init/ssh.conf.disabled $rootfs/etc/init/ssh.conf sed -i "s/root@$(hostname)/root@$hostname/g" $rootfs/etc/ssh/ssh_host_*.pub + if [ -f "$rootfs/etc/init/ssh.conf.disabled" ]; then + mv "$rootfs/etc/init/ssh.conf.disabled" "$rootfs/etc/init/ssh.conf" + fi + rm -f $rootfs/usr/sbin/policy-rc.d fi