Skip to content

Commit fa6bb23

Browse files
author
Derrick Dymock
committed
Allow changing to latest instead of present.
1 parent b5848c8 commit fa6bb23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

manifests/server.pp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
$default_ssl_crl_path = undef,
1818
$serveradmin = 'root@localhost',
1919
$default_webroot = $nginx::params::default_webroot,
20+
$ensure = 'present',
2021
) inherits nginx::params {
2122

2223
include nginx
@@ -28,7 +29,7 @@
2829
}
2930

3031
package{ 'nginx':
31-
ensure => present,
32+
ensure => $ensure,
3233
name => $nginx::params::package,
3334
}
3435

0 commit comments

Comments
 (0)