2021-04-24 18:17:55 +00:00
|
|
|
#!/bin/sh -e
|
2021-02-18 16:09:08 +00:00
|
|
|
. /usr/share/debconf/confmodule
|
2021-02-17 22:39:16 +00:00
|
|
|
|
2021-04-24 17:52:20 +00:00
|
|
|
db_get openwebrx/admin_user_configured
|
2021-04-24 18:07:08 +00:00
|
|
|
if [ "${1:-}" = "reconfigure" ] || [ "${RET}" != true ]; then
|
2021-02-18 14:55:55 +00:00
|
|
|
db_input high openwebrx/admin_user_password || true
|
|
|
|
db_go
|
|
|
|
fi
|