2021-04-24 17:46:19 +00:00
|
|
|
#!/bin/sh -ex
|
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 17:39:48 +00:00
|
|
|
if [ "${RET}" != true ]; then
|
2021-02-18 14:55:55 +00:00
|
|
|
db_input high openwebrx/admin_user_password || true
|
|
|
|
db_go
|
|
|
|
fi
|