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