File: postinst

package info (click to toggle)
libapache-mod-lisp 2.41-0.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 128 kB
  • ctags: 112
  • sloc: ansic: 588; lisp: 493; makefile: 37; sh: 26
file content (13 lines) | stat: -rw-r--r-- 166 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

for i in apache apache-ssl apache-perl; do
	if [ -e /etc/$i/httpd.conf ]; then
		modules-config $i enable mod_lisp
	fi
done

#DEBHELPER#

exit 0