Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/spawn_fcgi/manifests/init.pp

Issue 29502643: #2498 - Provide systemd unit for spawn-fcgi (Closed) Base URL: https://hg1/infrastructure
Patch Set: Created Aug. 1, 2017, 3:46 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: modules/spawn_fcgi/manifests/init.pp
===================================================================
--- a/modules/spawn_fcgi/manifests/init.pp
+++ b/modules/spawn_fcgi/manifests/init.pp
@@ -13,7 +13,19 @@
ensure => running,
hasstatus => true,
enable => true,
- require => File['/etc/init.d/spawn-fcgi'],
+ require => [
+ File['/etc/init.d/spawn-fcgi'],
+ File['/etc/systemd/system/spawn-fcgi.service'],
+ ],
mathias 2017/08/01 22:21:18 That closing bracket is one indent level too deep.
f.nicolaisen 2017/08/02 07:51:48 Acknowledged.
+ }
+
+ file { '/etc/systemd/system/spawn-fcgi.service':
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => '0755',
+ source => 'puppet:///modules/spawn_fcgi/spawn-fcgi.service',
+ require => Package['spawn-fcgi'],
}
file { '/etc/init.d/spawn-fcgi':
« modules/spawn_fcgi/files/spawn-fcgi.service ('K') | « modules/spawn_fcgi/files/spawn-fcgi.service ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld