From 5f54a053d37957441d3da1d80983ef2b262517f5 Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Mon, 18 Feb 2019 18:08:50 -0800 Subject: [PATCH] use systemctl instead of service and restart firewalld Signed-off-by: Vasu Kulkarni --- teuthology/task/ceph_ansible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 8b8c45f2b..31cacf1ab 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -147,7 +147,7 @@ class CephAnsible(Task): def start_firewalld(self): for remote, roles in self.each_cluster.remotes.iteritems(): - cmd = 'sudo service firewalld start' + cmd = 'sudo systemctl restart firewalld' remote.run( args=cmd, stdout=StringIO(), ) -- 2.47.3