39 lines
647 B
ObjectPascal
Raw Normal View History

# Class: httpd
2010-09-01 18:01:04 -04:00
#
# This class installs Apache
#
# Parameters:
#
# Actions:
# - Install Apache
# - Manage Apache service
#
# Requires:
#
# Sample Usage:
#
class httpd {
include httpd::params
package { 'httpd':
ensure => installed,
name => $httpd::params::apache_name,
2010-09-01 18:01:04 -04:00
}
2010-09-01 18:01:04 -04:00
service { 'httpd':
ensure => running,
name => $httpd::params::apache_name,
2010-09-01 18:01:04 -04:00
enable => true,
subscribe => Package['httpd'],
}
file { 'httpd_vdir':
ensure => directory,
path => $httpd::params::vdir,
2010-09-01 18:01:04 -04:00
recurse => true,
purge => true,
notify => Service['httpd'],
require => Package['httpd'],
}
2010-09-01 18:01:04 -04:00
}