Left: | ||
Right: |
OLD | NEW |
---|---|
1 # Class: spawn_fcgi | 1 # Class: spawn_fcgi |
2 # | 2 # |
3 # This class manage spawn-fcgi installation and configuration. | 3 # This class manage spawn-fcgi installation and configuration. |
4 # | 4 # |
5 # Use spawn_fcgi::pool for configuring spawn-fcgi pools | 5 # Use spawn_fcgi::pool for configuring spawn-fcgi pools |
6 # Use spawn_fcgi::php-pool to configure a preconfigured php-pool | 6 # Use spawn_fcgi::php-pool to configure a preconfigured php-pool |
7 # | 7 # |
8 class spawn_fcgi { | 8 class spawn_fcgi { |
9 | 9 |
10 package { 'spawn-fcgi': ensure => installed } | 10 package { 'spawn-fcgi': ensure => installed } |
11 | 11 |
12 service { 'spawn-fcgi': | 12 service { 'spawn-fcgi': |
13 ensure => running, | 13 ensure => running, |
14 hasstatus => true, | 14 hasstatus => true, |
15 enable => true, | 15 enable => true, |
16 require => File['/etc/init.d/spawn-fcgi'], | 16 require => [ |
17 File['/etc/init.d/spawn-fcgi'], | |
18 File['/etc/systemd/system/spawn-fcgi.service'], | |
19 ], | |
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.
| |
20 } | |
21 | |
22 file { '/etc/systemd/system/spawn-fcgi.service': | |
23 ensure => present, | |
24 owner => root, | |
25 group => root, | |
26 mode => '0755', | |
27 source => 'puppet:///modules/spawn_fcgi/spawn-fcgi.service', | |
28 require => Package['spawn-fcgi'], | |
17 } | 29 } |
18 | 30 |
19 file { '/etc/init.d/spawn-fcgi': | 31 file { '/etc/init.d/spawn-fcgi': |
20 ensure => present, | 32 ensure => present, |
21 owner => root, | 33 owner => root, |
22 group => root, | 34 group => root, |
23 mode => '0755', | 35 mode => '0755', |
24 content => template('spawn_fcgi/init-spawn-fcgi.erb'), | 36 content => template('spawn_fcgi/init-spawn-fcgi.erb'), |
25 require => Package['spawn-fcgi'], | 37 require => Package['spawn-fcgi'], |
26 } | 38 } |
27 | 39 |
28 file { '/etc/spawn-fcgi': | 40 file { '/etc/spawn-fcgi': |
29 ensure => directory, | 41 ensure => directory, |
30 require => Package['spawn-fcgi'], | 42 require => Package['spawn-fcgi'], |
31 } | 43 } |
32 } | 44 } |
OLD | NEW |