diff options
author | dequis <dx@dxzone.com.ar> | 2017-01-01 19:40:09 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2017-01-02 03:44:38 -0300 |
commit | 7a3d2c7d612aba056153ed9eb6c460bc303fcd9e (patch) | |
tree | f73a1736935fdfdeb81c076524a7b0dc63d6f6df /debian/bitlbee-common.config | |
parent | 8768f677d4ee42a8a5c926b102614ab1c8297ccb (diff) |
debian: drop support for /etc/default/bitlbee
It was broken with the transition to systemd and doesn't seem worth
fixing - it's redundant with bitlbee.conf and not much more than a
source of confusion for users.
This also removes all the debconf stuff and all the translations which
are not used anymore (that looked a bit excessive for something that
just asks for a port number)
Diffstat (limited to 'debian/bitlbee-common.config')
-rw-r--r-- | debian/bitlbee-common.config | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/bitlbee-common.config b/debian/bitlbee-common.config deleted file mode 100644 index 927f646f..00000000 --- a/debian/bitlbee-common.config +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -set -e - -. /usr/share/debconf/confmodule -[ -f /etc/default/bitlbee ] && . /etc/default/bitlbee - -db_title BitlBee - -if [ -n "$BITLBEE_PORT" ]; then - db_set bitlbee/serveport "$BITLBEE_PORT" -else - db_get bitlbee/serveport - if [ "$RET" = "stillhavetoask" ]; then - db_set bitlbee/serveport 6667; - fi -fi - -if db_input medium bitlbee/serveport; then - db_go; -fi |