summaryrefslogtreecommitdiff
path: root/waterfox/debian/config
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-03-06 15:23:42 -0500
committerB Stack <bgstack15@gmail.com>2019-03-06 15:23:42 -0500
commitfe39148d0cd6ec9020883e8e2af9376412f8da86 (patch)
tree7284d371ba3a04d1e8dcfbe97c5e2cc99057a467 /waterfox/debian/config
parentwaterfox 56.2.7.1 rpm rc1 (diff)
downloadstackrpms-fe39148d0cd6ec9020883e8e2af9376412f8da86.tar.gz
stackrpms-fe39148d0cd6ec9020883e8e2af9376412f8da86.tar.bz2
stackrpms-fe39148d0cd6ec9020883e8e2af9376412f8da86.zip
WIP: waterfox dpkg
Diffstat (limited to 'waterfox/debian/config')
-rw-r--r--waterfox/debian/config13
1 files changed, 13 insertions, 0 deletions
diff --git a/waterfox/debian/config b/waterfox/debian/config
new file mode 100644
index 0000000..f1b344a
--- /dev/null
+++ b/waterfox/debian/config
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+# Exit on error
+set -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+# Show note
+db_input high waterfox/locales || true
+
+# Show interface
+db_go
bgstack15