From dc1ffaa019eb22627478daf54619243a3fe3c7ef Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 3 Oct 2020 13:25:50 +0200 Subject: [PATCH] add raw blocks to molecule files --- README.md | 4 ---- .../create.yml | 2 ++ .../destroy.yml | 2 ++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d7b9cd1..b3bef56 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,3 @@ Usage: `cookiecutter https://gitea.rknet.org/xoxys/cookiecutter-ansible-role` ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. - -## Maintainers and Contributors - -[Robert Kaussow](https://gitea.rknet.org/xoxys) diff --git a/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/create.yml b/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/create.yml index 6c1d373..23e89f2 100644 --- a/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/create.yml +++ b/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/create.yml @@ -1,3 +1,4 @@ +{% raw %} --- - name: Create hosts: localhost @@ -90,3 +91,4 @@ - name: Wait for VM to settle down pause: seconds: 30 +{% endraw %} diff --git a/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/destroy.yml b/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/destroy.yml index ecf2ed3..25aca68 100644 --- a/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/destroy.yml +++ b/{{cookiecutter.author}}.{{cookiecutter.role_name}}/molecule/{{cookiecutter.molecule_scenario|replace('-', '')}}/destroy.yml @@ -1,3 +1,4 @@ +{% raw %} --- - name: Destroy hosts: localhost @@ -55,3 +56,4 @@ content: "{{ instance_conf | molecule_to_yaml | molecule_header }}" dest: "{{ molecule_instance_config }}" when: server.changed | bool +{% endraw %}