root/alternc-awstats/tags/0.5.1/debian/preinst

Revision 1073, 447 bytes (checked in by benjamin, 3 years ago)

upgrading alternc-awstats to 0.4 so that it become compatible with alternc 0.9.4. Major overhaul

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1 #!/bin/sh -e
2
3 # Check that AlternC is properly installed/configured
4 if [ -f /etc/alternc/local.sh ]
5 then
6     exit 0
7 else
8     # Source debconf library.
9     . /usr/share/debconf/confmodule
10     db_version 2.0
11     db_title AlternC-Awstats
12     db_fset alternc-awstats/errorinstall seen false
13     db_input medium alternc-awstats/errorinstall
14     db_go
15     # il FAUT qu'AlternC soit proprement configuré pour installer awstats
16     exit 1
17 fi
18
19 #DEBHELPER#
20
Note: See TracBrowser for help on using the browser.