From cf4fba1fb199110191a519e7a554221c257aa08d Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 23 Nov 2016 18:51:46 +0200 Subject: [PATCH] - Rename from ansible-role-example to example. --- defaults/main.yml | 2 +- handlers/main.yml | 2 +- molecule.yml | 4 ++-- tasks/main.yml | 2 +- tests/playbook.yml | 6 +++--- tests/requirements.yml | 8 ++------ vars/main.yml | 2 +- 7 files changed, 11 insertions(+), 15 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 25ca86f..0a97962 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,2 +1,2 @@ --- -# defaults file for ansible-role-example +# defaults file for example diff --git a/handlers/main.yml b/handlers/main.yml index 1d74a03..bd0df0d 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -1,2 +1,2 @@ --- -# handlers file for ansible-role-example +# handlers file for example diff --git a/molecule.yml b/molecule.yml index 71e855c..a22598d 100644 --- a/molecule.yml +++ b/molecule.yml @@ -19,7 +19,7 @@ vagrant: - name: ubuntu box: ubuntu/xenial64 instances: - - name: ansible-role-example + - name: example options: append_platform_to_hostname: yes raw_config_args: @@ -30,7 +30,7 @@ vagrant: docker: containers: - - name: ansible-role-example-ubuntu + - name: example-ubuntu image: ubuntu image_version: xenial environment: diff --git a/tasks/main.yml b/tasks/main.yml index 5772d26..6784821 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,5 +1,5 @@ --- -# tasks file for ansible-role-example +# tasks file for example - name: Assertions assert: diff --git a/tests/playbook.yml b/tests/playbook.yml index 02cca1a..a0afd5e 100644 --- a/tests/playbook.yml +++ b/tests/playbook.yml @@ -1,12 +1,12 @@ --- -- hosts: ansible-role-example-openbsd +- hosts: example-openbsd gather_facts: false roles: [openbsd_bootstrap] -- hosts: ansible-role-example-ubuntu +- hosts: example-ubuntu gather_facts: false roles: [debian_bootstrap] - hosts: all roles: - - role: ansible-role-example + - role: example diff --git a/tests/requirements.yml b/tests/requirements.yml index 2fd4277..1eeb2ae 100644 --- a/tests/requirements.yml +++ b/tests/requirements.yml @@ -1,7 +1,3 @@ --- -- src: https://github.com/adarnimrod/ansible-role-openbsd-bootstrap - scm: git - name: openbsd_bootstrap -- src: https://github.com/adarnimrod/ansible-role-debian-bootstrap - scm: git - name: debian_bootstrap +- role: openbsd-bootstrap +- role: debian-bootstrap diff --git a/vars/main.yml b/vars/main.yml index 2417503..7542f3c 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -1,2 +1,2 @@ --- -# vars file for ansible-role-example +# vars file for example -- GitLab