mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
10 lines
248 B
Bash
Executable file
10 lines
248 B
Bash
Executable file
#!/bin/sh -e
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_get openwebrx/admin_user_configured
|
|
if [ "${1:-}" = "reconfigure" ] || [ "${RET}" != true ]; then
|
|
db_settitle openwebrx/title
|
|
db_input high openwebrx/admin_user_password || true
|
|
db_go
|
|
fi
|