diff options
| author | talset <florian.lambert@enovance.com> | 2016-06-15 13:55:30 +0200 | 
|---|---|---|
| committer | talset <florian.lambert@enovance.com> | 2016-06-15 13:55:30 +0200 | 
| commit | f9ecec42f51f7409322d73995584db1755fbe999 (patch) | |
| tree | e78f3282c9f8872ca2d85dc1959e02ff7b2cc542 | |
| parent | b4bec9f464a6b4e4937ddd9204e2d716b699a86c (diff) | |
Fix uninstall.yml indentation for deamon-reload
  * command: systemctl daemon-reload need to be at the task level, not in the with_items
| -rw-r--r-- | playbooks/adhoc/uninstall.yml | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/playbooks/adhoc/uninstall.yml b/playbooks/adhoc/uninstall.yml index a141b3303..3d6de2d17 100644 --- a/playbooks/adhoc/uninstall.yml +++ b/playbooks/adhoc/uninstall.yml @@ -288,11 +288,11 @@      - /usr/local/bin/oc      - /usr/local/bin/kubectl -    # Since we are potentially removing the systemd unit files for separated -    # master-api and master-controllers services, so we need to reload the -    # systemd configuration manager -    - name: Reload systemd manager configuration -      command: systemctl daemon-reload +  # Since we are potentially removing the systemd unit files for separated +  # master-api and master-controllers services, so we need to reload the +  # systemd configuration manager +  - name: Reload systemd manager configuration +    command: systemctl daemon-reload  - hosts: etcd    become: yes  | 
