Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
C24-AK committed Oct 18, 2023
1 parent 2952bc5 commit 5fb93cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ Data type: `String[1]`
The version of nginx installed (or being installed).
Unfortunately, different versions of nginx may need configuring
differently. The default is derived from the version of nginx
already installed. If the fact is unavailable, it defaults to '1.25.2'.
already installed. If the fact is unavailable, it defaults to '1.6.0'.
You may need to set this manually to get a working and idempotent
configuration.

Default value: `pick(fact('nginx_version'), '1.25.2')`
Default value: `pick(fact('nginx_version'), '1.6.0')`

##### <a name="-nginx--debug_connections"></a>`debug_connections`

Expand Down
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# The version of nginx installed (or being installed).
# Unfortunately, different versions of nginx may need configuring
# differently. The default is derived from the version of nginx
# already installed. If the fact is unavailable, it defaults to '1.25.2'.
# already installed. If the fact is unavailable, it defaults to '1.6.0'.
# You may need to set this manually to get a working and idempotent
# configuration.
#
Expand Down Expand Up @@ -240,7 +240,7 @@
Hash $nginx_upstreams = {},
Nginx::UpstreamDefaults $nginx_upstreams_defaults = {},
Boolean $purge_passenger_repo = true,
String[1] $nginx_version = pick(fact('nginx_version'), '1.25.2'),
String[1] $nginx_version = pick(fact('nginx_version'), '1.6.0'),

### END Hiera Lookups ###
) inherits nginx::params {
Expand Down

0 comments on commit 5fb93cd

Please sign in to comment.