Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
vbotka committed Jun 11, 2021
2 parents c11226d + e592bb5 commit 3add750
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = '2.1'
# The full version, including alpha/beta/rc tags.
release = '2.1.0'
release = '2.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions tasks/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
ansible_python_version [{{ ansible_python_version }}]
apache_install [{{ apache_install }}]
apache_version [{{ apache_version }}]
apache_packages
{{ apache_packages|to_nice_yaml }}
apache_enable [{{ apache_enable }}]
Expand Down
9 changes: 9 additions & 0 deletions tasks/packages-freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
delay: "{{ freebsd_install_delay }}"
when: freebsd_install_method == "packages"

- name: "packages: Debug install packages"
ansible.builtin.debug:
var: result
when: apache_debug|bool

- name: "packages: Install ports"
community.general.portinstall:
name: "{{ item }}"
Expand All @@ -20,5 +25,9 @@
delay: "{{ freebsd_install_delay }}"
when: freebsd_install_method == "ports"

- name: "packages: Debug install ports"
ansible.builtin.debug:
var: result
when: apache_debug|bool
# EOF
...

0 comments on commit 3add750

Please sign in to comment.