8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/bin/sh -e
|
|
. /usr/share/debconf/confmodule
|
|
|
|
if ! openwebrx-admin --silent hasuser admin; then
|
|
db_input high openwebrx/admin_user_password || true
|
|
db_go
|
|
fi
|