Skip to content
Snippets Groups Projects
Commit 6f2ff7db authored by Thomas Bellman's avatar Thomas Bellman
Browse files

Fix typo in 'service ... ensure => running'.

By mistake we had used 'ensure => $running' for the httpd service.
This happened to work on our pilot system, where we set the global
variable $running, but it should not be like that.

Thanks to Kent Engström for making us look for the error.
parent fda3e06d
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ class apache::service ...@@ -93,7 +93,7 @@ class apache::service
{ {
service { service {
'httpd': 'httpd':
enable => true, ensure => $running, enable => true, ensure => running,
hasstatus => true, hasrestart => true; hasstatus => true, hasrestart => true;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment