blob: e7f85c5e926a76923459529653d75980e26f24eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_input low bind9/start-as-user || true
db_go
db_input low bind9/different-configuration-file || true
db_go
db_input low bind9/run-resolvconf || true
db_go
|