Skip to content
Snippets Groups Projects
Commit 1b611c87 authored by Rene Jochum's avatar Rene Jochum
Browse files

Add optional method to remove /etc/salt/minion.


Signed-off-by: default avatarRene Jochum <rene@jochums.at>
parent fa6818af
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,9 @@ salt:
# and up as it'll wipe out important files that Salt relies on.
clean_config_d_dir: False
# This state will remove "/etc/salt/minion" when you set this to true.
minion_remove_config: True
# Set this to False to not have the formula install packages (in the case you
# install Salt via git/pip/etc.)
install_packages: True
......
......@@ -6,6 +6,8 @@ salt:
config_path: /etc/salt
minion_remove_config: False
minion_service: salt-minion
master_service: salt-master
api_service: salt-api
......
......@@ -23,6 +23,12 @@ salt-minion:
- file: salt-minion
- file: remove-old-minion-conf-file
{% if salt_settings.minion_remove_config %}
remove-default-minion-conf-file:
file.absent:
- name: {{ salt_settings.config_path }}/minion
{% endif %}
# clean up old _defaults.conf file if they have it around
remove-old-minion-conf-file:
file.absent:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment