From 1115f2436459c783a918dd64591e5f8ea9f60075 Mon Sep 17 00:00:00 2001
From: Tim Bielawa <tbielawa@redhat.com>
Date: Thu, 1 Jun 2017 13:30:10 -0400
Subject: Add daemon_reload parameter to service tasks

Fixes "Could not find the requested service atomic-openshift-master:
cannot enable" error during reinstall.

https://bugzilla.redhat.com/show_bug.cgi?id=1451693
---
 roles/openshift_master/tasks/main.yml | 1 +
 roles/openshift_node/tasks/main.yml   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml
index 5522fef26..aed5598c0 100644
--- a/roles/openshift_master/tasks/main.yml
+++ b/roles/openshift_master/tasks/main.yml
@@ -177,6 +177,7 @@
 # https://github.com/openshift/origin/issues/6447
 - name: Start and enable master
   systemd:
+    daemon_reload: yes
     name: "{{ openshift.common.service_type }}-master"
     enabled: yes
     state: started
diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml
index a8beaa060..573051504 100644
--- a/roles/openshift_node/tasks/main.yml
+++ b/roles/openshift_node/tasks/main.yml
@@ -206,6 +206,7 @@
 
 - name: Start and enable node dep
   systemd:
+    daemon_reload: yes
     name: "{{ openshift.common.service_type }}-node-dep"
     enabled: yes
     state: started
-- 
cgit v1.2.3