13 lines
180 B
Text
13 lines
180 B
Text
|
|
#! /bin/sh
|
||
|
|
#
|
||
|
|
# Load debconf module and ask informed consent
|
||
|
|
#
|
||
|
|
set -e
|
||
|
|
|
||
|
|
. /usr/share/debconf/confmodule
|
||
|
|
db_version 2.0
|
||
|
|
|
||
|
|
db_input high ooniprobe-cli/ask-consent || true
|
||
|
|
db_go
|
||
|
|
|
||
|
|
exit 0
|