CleanupTemp n'existe plus.
[GroupUserFolder.git] / debian / config
1 #!/bin/sh -e
2 #----------------------------------------------------------------
3 # Simple `.config' script for zope-* packages.
4 # First coded by Luca - De Whiskey's - De Vitis <luca@debian.org>
5 #----------------------------------------------------------------
6
7 # Load the confmodule.
8 . /usr/share/debconf/confmodule
9
10 # Setup.
11 db_version 2.0
12 db_capb backup
13
14 # Prompt the question to the user.
15 db_input low "$(basename $0 .config)/postinst" || true
16 db_go
17
18 # Stop the communication with the db.
19 db_stop
20
21 # That's all folks!
22 exit 0