From c67f260cf034ad8fbb7e1377f7185cc77976447e Mon Sep 17 00:00:00 2001 From: Owen Synge Date: Thu, 11 Feb 2016 17:12:37 +0100 Subject: [PATCH] [RM-14742] Set default init to systemd for (open)SUSE (open)SUSE is now using systemd moving forward, this patch corrects behavior on Tumbleweed and LEAP openSUSE Tumbleweed distribution is a pure rolling release version of openSUSE running the latest packages. openSUSE LEAP is a rolling release version of openSUSE based on SUSE linux Enterprise. Signed-off-by: Owen Synge --- ceph_deploy/hosts/suse/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph_deploy/hosts/suse/__init__.py b/ceph_deploy/hosts/suse/__init__.py index e66a433..2e3a345 100644 --- a/ceph_deploy/hosts/suse/__init__.py +++ b/ceph_deploy/hosts/suse/__init__.py @@ -24,7 +24,7 @@ def choose_init(module): '12' : 'systemd', # SLE_12 '13.1' : 'systemd', # openSUSE_13.1 } - return init_mapping.get(release, 'sysvinit') + return init_mapping.get(release, 'systemd') def get_packager(module): -- 2.47.3