File: bbclone.config

package info (click to toggle)
bbclone 0.4.6-10
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,312 kB
  • ctags: 528
  • sloc: php: 15,858; sh: 349; makefile: 41
file content (21 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

set -e 

. /usr/share/debconf/confmodule
db_version 2.0

# Apache* autoconfiguration
db_input high bbclone/reconfigure-webserver || true
db_go || true
db_get bbclone/reconfigure-webserver || true
webservers="$RET"

if [ ! "$webservers" = "" ]; then
    db_input high bbclone/restart-webserver || true
    db_go || true
fi

#DEBHELPER#

exit 0