Browse Source

Added a few common directories to package-map.jinja

tags/v0.37.4
Seth House 11 years ago
parent
commit
a58bfa6d0f
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      apache/package-map.jinja

+ 12
- 2
apache/package-map.jinja View File

@@ -2,13 +2,23 @@
'Debian': {
'server': 'apache2',
'service': 'apache2',
'conf': '/etc/apache2/conf.d',
'mod_wsgi': 'libapache2-mod-wsgi',

'vhostdir': '/etc/apache2/sites-available',
'confdir': '/etc/apache2/conf.d',
'logdir': '/var/log/apache2',
'wwwdir': '/srv',
},
'RedHat': {
'server': 'httpd',
'service': 'httpd',
'conf': '/etc/httpd/conf.d',
'mod_wsgi': 'mod_wsgi',

'vhostdir': '/etc/httpd/conf.d',
'confdir': '/etc/httpd/conf.d',
'logdir': '/var/log/httpd',
'wwwdir': '/var/www',
},
}, merge=salt['pillar.get']('apache:lookup')) %}

Loading…
Cancel
Save