Browse Source

Don't overwrite node's systemd units for containerized install

Systemd units are being updated in ../systemd_units.yml

Signed-off-by: Vadim Rutkovsky <vrutkovs@redhat.com>
Vadim Rutkovsky 7 years ago
parent
commit
45d3a1d919
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_node/tasks/upgrade/config_changes.yml

+ 1 - 1
roles/openshift_node/tasks/upgrade/config_changes.yml

@@ -60,6 +60,7 @@
     dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
     src: "node.service.j2"
   register: l_node_unit
+  when: not openshift_is_containerized | bool
 
 - name: Reset selinux context
   command: restorecon -RF {{ openshift_node_data_dir }}/openshift.local.volumes
@@ -74,4 +75,3 @@
 #       require a service to be part of the call.
 - name: Reload systemd units
   command: systemctl daemon-reload
-  when: l_node_unit is changed