File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.21.0 (Unreleased)
4
+
5
+ FEATURES:
6
+
7
+ * Add a ` nginx_install_epel_release ` feature flag which allows epel-release to not be installed by this role if so desired.
8
+
3
9
## 0.20.0 (June 9, 2021)
4
10
5
11
BREAKING CHANGES:
Original file line number Diff line number Diff line change @@ -40,6 +40,12 @@ nginx_state: present
40
40
# Default is nginx_repository.
41
41
nginx_install_from : nginx_repository
42
42
43
+ # Specify whether or not you want this role to install the epel-release package.
44
+ # Using 'true' will install epel-release if other criteria are met.
45
+ # Using 'false' will not install epel-release.
46
+ # Default is true.
47
+ nginx_install_epel_release : true
48
+
43
49
# Specify source install options for NGINX Open Source.
44
50
# Options represent whether to install from source also or to install from packages (default).
45
51
# These only apply if 'nginx_install_from' is set to 'source'.
Original file line number Diff line number Diff line change 5
5
when :
6
6
- ansible_facts['distribution'] == "CentOS"
7
7
- ' "geoip" in nginx_modules'
8
+ - nginx_install_epel_release | bool
8
9
9
10
- name : Install NGINX modules
10
11
package :
You can’t perform that action at this time.
0 commit comments