Skip to content

Commit

Permalink
Fixed many typos
Browse files Browse the repository at this point in the history
  • Loading branch information
s-hell committed Nov 19, 2024
1 parent 5e6ae90 commit 29683ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ apache_mods_enabled:
apache_mods_disabled: []

# Enable additional configs
apache_confs_enabled: []
apache_conf_enabled: []

# Disable these configs
apache_confs_disabled: []
apache_conf_disabled: []

# Set initial apache state. Recommended values: `started` or `stopped`
apache_state: started
Expand Down
10 changes: 5 additions & 5 deletions tasks/configure-Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@

- name: Enable Apache confs.
ansible.builtin.file:
src: "{{ apache_server_root }}/confs-available/{{ item }}.load"
dest: "{{ apache_server_root }}/confs-enabled/{{ item }}.load"
src: "{{ apache_server_root }}/conf-available/{{ item }}.load"
dest: "{{ apache_server_root }}/conf-enabled/{{ item }}.load"
state: link
mode: "0644"
with_items: "{{ apache_confs_enabled }}"
with_items: "{{ apache_conf_enabled }}"
notify: restart apache

- name: Disable Apache confs..
ansible.builtin.file:
path: "{{ apache_server_root }}/confs-enabled/{{ item }}.load"
path: "{{ apache_server_root }}/conf-enabled/{{ item }}.load"
state: absent
with_items: "{{ apache_confs_disabled }}"
with_items: "{{ apache_conf_disabled }}"
notify: restart apache

- name: Check whether certificates defined in vhosts exist.
Expand Down

0 comments on commit 29683ed

Please sign in to comment.