You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
409 B

  1. ---
  2. - name: Update config.toml with json
  3. when: jsonconfig is defined
  4. tomlconfig: "dest='{{destination}}' json='{{jsonconfig}}' state={{(remove | default(false) | bool) | ternary('absent','present')}}"
  5. - name: Update config.toml with toml
  6. when: tomlconfig is defined
  7. tomlconfig: "dest='{{destination}}' toml='{{tomlconfig}}' state={{(remove | default(false) | bool) | ternary('absent','present')}}"