summaryrefslogtreecommitdiffstats
path: root/manifests/init.pp
blob: f22c48f1d09d3214b844b6735286c72dcbc965e7 (plain)
1
2
3
4
5
6
7
8
9
10
class django::server {
    package { "httpd", "Django", "mod-python" }:
        ensure      => installed,
    }

    service { "httpd":
        ensure      => running,
        require     => Package["httpd"],
    }
}