Use explicit app names in install scripts

Replace the generic ${APP} placeholder with explicit, consistently capitalized application names in install scripts to produce clearer log output. Affected scripts: install/{akaunting,blinko,dagu,gogs,invoiceshelf,matomo,papermark,rss-bridge,solidtime}-install.sh. Changes update msg_info and msg_ok messages only.
This commit is contained in:
CanbiZ (MickLesk)
2026-04-13 16:44:38 +02:00
parent 0dbf0b06ae
commit b2af68d233
9 changed files with 18 additions and 18 deletions

View File

@@ -19,7 +19,7 @@ PG_DB_NAME="papermark" PG_DB_USER="papermark" setup_postgresql_db
fetch_and_deploy_gh_release "papermark" "mfts/papermark" "tarball"
msg_info "Setting up ${APP}"
msg_info "Setting up Papermark"
cd /opt/papermark
cat <<EOF >/opt/papermark/.env
DATABASE_URL=postgresql://${PG_DB_USER}:${PG_DB_PASS}@127.0.0.1:5432/${PG_DB_NAME}
@@ -32,7 +32,7 @@ $STD npm install
$STD npx prisma generate
$STD npx prisma migrate deploy
$STD npm run build
msg_ok "Set up ${APP}"
msg_ok "Set up Papermark"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/papermark.service