]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
ceph_deploy.tests.unit.hosts.test_suse: Fix default init 387/head
authorOwen Synge <osynge@suse.com>
Thu, 26 May 2016 12:39:03 +0000 (14:39 +0200)
committerOwen Synge <osynge@suse.com>
Thu, 26 May 2016 12:39:03 +0000 (14:39 +0200)
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 <osynge@suse.com>
ceph_deploy/tests/unit/hosts/test_suse.py

index 800b3e70f72cf63d42371537b0a88eafe5485e4d..d3b34159c9d8933718ebbbf049dd96bf6259f28b 100644 (file)
@@ -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'