Puppet Class: php::apache
- Defined in:
- manifests/apache.pp
Overview
| 1 2 3 4 5 6 7 8 9 10 11 | # File 'manifests/apache.pp', line 1
class php::apache
{
	define restart()
	{
		exec {$title:
			command => 'apachectl restart',
			path    => ['/usr/bin','/usr/sbin'],
			onlyif  => 'test -f /usr/sbin/apachectl',
		}
	}
} |