Last change
on this file since 2948 was
2948,
checked in by mabarracus, 4 years ago
|
Add debconf, n4d-vars, dialog confirmation logic
|
File size:
412 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # config script for lliurex-statistics |
---|
3 | # |
---|
4 | # see: dh_installdeb(1) |
---|
5 | |
---|
6 | set -e |
---|
7 | |
---|
8 | . /usr/share/debconf/confmodule |
---|
9 | db_version 2.0 |
---|
10 | #db_capb backup |
---|
11 | |
---|
12 | RET="" |
---|
13 | db_get lliurex-statistics/unnatended || true |
---|
14 | if [ "$RET" = "false" ] || [ -n "$DEBCONF_RECONFIGURE" ]; then |
---|
15 | db_input high lliurex-statistics/acknowledge || true |
---|
16 | db_go |
---|
17 | fi |
---|
18 | |
---|
19 | RET="" |
---|
20 | db_get lliurex-statistics/acknowledge |
---|
21 | |
---|
22 | #DEBHELPER# |
---|
23 | |
---|
24 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.