From: Owen Synge Date: Thu, 26 May 2016 12:39:03 +0000 (+0200) Subject: ceph_deploy.tests.unit.hosts.test_suse: Fix default init X-Git-Tag: v1.5.34~4^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F387%2Fhead;p=ceph-deploy.git ceph_deploy.tests.unit.hosts.test_suse: Fix default init The default init system for SUSE should be systemd, as all future releases of SUSE are expected to be based upon systemd Signed-off-by: Owen Synge --- diff --git a/ceph_deploy/tests/unit/hosts/test_suse.py b/ceph_deploy/tests/unit/hosts/test_suse.py index 800b3e7..d3b3415 100644 --- a/ceph_deploy/tests/unit/hosts/test_suse.py +++ b/ceph_deploy/tests/unit/hosts/test_suse.py @@ -8,7 +8,7 @@ class TestSuseInit(object): def test_choose_init_default(self): self.host.release = None init_type = self.host.choose_init(self.host) - assert init_type == "sysvinit" + assert init_type == "systemd" def test_choose_init_SLE_11(self): self.host.release = '11'