mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-03 07:10:15 +01:00
6 lines
131 B
Plaintext
6 lines
131 B
Plaintext
|
|
#!/bin/sh -e
|
||
|
|
|
||
|
|
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
|
||
|
|
. /usr/share/debconf/confmodule
|
||
|
|
db_purge
|
||
|
|
fi
|