Skip to content
Snippets Groups Projects
Commit ded9a13f 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 dsmcad 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 49090712
No related branches found
No related tags found
No related merge requests found
......@@ -379,7 +379,7 @@ class tsmclient::install
service {
'dsmcad':
enable => true, ensure => $running,
enable => true, ensure => running,
hasstatus => true, hasrestart => true,
require => File['/etc/init.d/dsmcad'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment