Skip to content
Snippets Groups Projects
Commit 271c37a1 authored by Micah Anderson's avatar Micah Anderson
Browse files

Fix starting tapicero when it is not running (#6004)

Due to how tapicero's initscript is made, it is not possible to check
for a valid exit code for the status (it returns a zero when it is not
running). So we disable the puppet 'hasstatus' parameter and instead
puppet will look in the process table for 'tapicero'

Change-Id: I9b017ea8055c0207e43876dd4e3bbc2619c0fd35
parent 4ebd86a1
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ class tapicero {
service { 'tapicero':
ensure => running,
enable => true,
hasstatus => true,
hasstatus => false,
hasrestart => true,
require => [ File['/etc/init.d/tapicero'], File['/var/run/tapicero'] ];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment