/[adm]/puppet/modules/django_application/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/django_application/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1141 - (show annotations) (download)
Sun Feb 20 12:11:35 2011 UTC (13 years, 2 months ago) by misc
File size: 437 byte(s)
- add a class for django application ( to avoid duplication
with potential futur django application )
1 class django_application {
2 package { ['python-django','python-psycopg2','python-django-auth-ldap']:
3 ensure => installed
4 }
5
6 file { "custom_backend.py":
7 path => "/usr/local/lib/custom_backend.py",
8 ensure => present,
9 owner => root,
10 group => root,
11 mode => 644,
12 source => "puppet:///modules/django_application/custom_backend.py",
13 notify => Service['apache']
14 }
15 }

  ViewVC Help
Powered by ViewVC 1.1.30