mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 16:44:46 +01:00

Use debconf to ask questions. This allow us to: - install deb packages using apt frontends (noninteractive, readline, etc). - display the questions on graphical installers like Gdebi. closes #75
9 lines
233 B
Bash
Executable file
9 lines
233 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
# set default value, otherwise the question is not shown on first install
|
|
db_fset python3-opensnitch-ui/question1 seen false
|
|
|
|
db_input high python3-opensnitch-ui/question1 || true
|
|
db_go
|