Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dump_config: support for dumping role configs locally #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,20 @@
tags:
- base_config
- access_setup
when: ansible_os_family != "Windows"
when: >
ansible_os_family != "Windows" and
dump_config is not defined

- name: include main tasks for windows
include_tasks: main_windows.yml
tags:
- base_config
- access_setup
when: ansible_os_family == "Windows"
when: >
ansible_os_family == "Windows" and
dump_config is not defined

- name: include additional tasks
include_tasks: "tasks/{{item}}.yml"
with_items: "{{basic_host_extra_tasks}}"
when: basic_host_extra_tasks is defined
when: basic_host_extra_tasks is defined
4 changes: 2 additions & 2 deletions tasks/main_default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
set_fact:
systemd_version: "{{_systemctl_version.stdout}}"
when: >
ansible_service_mgr == 'systemd' and
_systemctl_version is defined
ansible_service_mgr == 'systemd' and
_systemctl_version is defined

- name: check provisioning marker
stat:
Expand Down