Selaa lähdekoodia

Changed the ssl generation line to not include 'executable', as it is no longer supported in ansible 2.4

Tyler Culp 8 vuotta sitten
vanhempi
commit
5560a98e41
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      tasks/ssl_generate.yml

+ 1 - 2
tasks/ssl_generate.yml

@@ -23,11 +23,10 @@
         copy: no
 
     - name: Generate SSL certs
-      command: "_ {{ sensu_config_path }}/ssl_generation/sensu_ssl_tool/ssl_certs.sh generate"
+      command: "{{ __bash_path }} {{ sensu_config_path }}/ssl_generation/sensu_ssl_tool/ssl_certs.sh generate"
       args:
         chdir: "{{ sensu_config_path }}/ssl_generation/sensu_ssl_tool"
         creates: "{{ sensu_config_path }}/ssl_generation/sensu_ssl_tool/server"
-        executable: "{{ __bash_path }}"
 
     when: sensu_master|bool
     become: true