GitHub bot: fix linting issues (nobuild)

This commit is contained in:
github-actions
2025-07-16 07:06:50 +00:00
parent 12ed0d89f0
commit 6dea10e2dd
7 changed files with 6 additions and 6 deletions

6
ente/rootfs/etc/cont-init.d/99-run.sh Executable file → Normal file
View File

@@ -46,8 +46,8 @@ until pg_isready -q -h localhost -p 5432 -U postgres; do
bashio::log.info "Waiting for Postgres to accept connections…"
sleep 1
bashio::log.info "Creating role + database if needed…"
su - postgres -c psql <<SQL
bashio::log.info "Creating role + database if needed…"
su - postgres -c psql <<SQL
DO \$\$
BEGIN
IF NOT EXISTS (SELECT FROM pg_roles WHERE rolname = '${DB_USER}') THEN
@@ -60,6 +60,6 @@ END
\$\$;
SQL
bashio::log.info "Internal Postgres ready."
bashio::log.info "Internal Postgres ready."
done