summaryrefslogtreecommitdiff
path: root/manifests/fcgiwrap.pp
blob: 327f60ae44ee70c04ff9a4e6611f62f645a44f44 (plain)
1
2
3
4
5
6
7
8
9
# Sets up fciwrap, probably to be used in conjunction with nginx
class profiles::fcgiwrap {
  ensure_packages(['fcgiwrap'])

  service { 'fcgiwrap.socket':
    ensure => running,
    enable => true,
  }
}