change from systemd to autostart
All checks were successful
Build Slideshow App / build (amd64, , linux) (push) Successful in 1m30s
Build Slideshow App / build (amd64, .exe, windows) (push) Successful in 1m19s
Build Slideshow App / build (arm, 7, , linux) (push) Successful in 1m23s
Build Slideshow App / build (arm64, , linux) (push) Successful in 1m24s

This commit is contained in:
Adrian Zürcher
2026-01-19 07:19:51 +01:00
parent d82f213ca7
commit df344b4c13

View File

@@ -113,23 +113,15 @@ jobs:
echo "PORT=8080" > $BUILD_DIR/usr/share/$PKG_NAME/.env.template echo "PORT=8080" > $BUILD_DIR/usr/share/$PKG_NAME/.env.template
fi fi
# 5. Create the systemd Service File # 5. Create a Template Autostart File (Instead of Systemd)
cat <<EOF > $BUILD_DIR/etc/systemd/system/$PKG_NAME.service mkdir -p $BUILD_DIR/usr/share/$PKG_NAME/setup
[Unit] cat <<EOF > $BUILD_DIR/usr/share/$PKG_NAME/setup/$PKG_NAME.desktop
Description=Slideshow Application Service [Desktop Entry]
After=graphical.target Type=Application
Name=Slideshow App
[Service] Exec=/usr/bin/$PKG_NAME
Type=simple
Environment=DISPLAY=:0
Environment=XAUTHORITY=/home/youruser/.Xauthority
ExecStart=/usr/bin/$PKG_NAME
WorkingDirectory=/usr/share/$PKG_NAME WorkingDirectory=/usr/share/$PKG_NAME
Restart=always Terminal=false
User=root
[Install]
WantedBy=multi-user.target
EOF EOF
# 6. Create Control File # 6. Create Control File
@@ -139,28 +131,44 @@ jobs:
Section: utils Section: utils
Priority: optional Priority: optional
Architecture: $ARCH Architecture: $ARCH
Maintainer: Your Name <you@example.com> Maintainer: Adrian Zuercher <zuercher@tecamino.ch>
Description: Slideshow Application Description: Slideshow Application
EOF EOF
# 7. Optional: Add post-install script to enable service automatically # 7. Add post-install script for Autostart and Permissions
echo "create service"
cat <<EOF > $BUILD_DIR/DEBIAN/postinst cat <<EOF > $BUILD_DIR/DEBIAN/postinst
#!/bin/sh #!/bin/sh
# Check if .env exists in the target share folder # 1. Detect the real user (the one who ran sudo)
if [ ! -f "/usr/share/$PKG_NAME/.env" ]; then REAL_USER=\$SUDO_USER
echo "Creating new .env from template..." if [ -z "\$REAL_USER" ]; then
cp /usr/share/$PKG_NAME/.env.template /usr/share/$PKG_NAME/.env REAL_USER=\$(logname 2>/dev/null || echo "pi")
else
echo ".env already exists, skipping template copy to preserve settings."
fi fi
echo "reload" USER_HOME=\$(getent passwd "\$REAL_USER" | cut -d: -f6)
systemctl daemon-reload
echo "enable service" echo "Installing for user: \$REAL_USER in \$USER_HOME"
systemctl enable $PKG_NAME.service
echo "start service" # 2. Setup .env from template
systemctl start $PKG_NAME.service if [ ! -f "/usr/share/$PKG_NAME/.env" ]; then
cp /usr/share/$PKG_NAME/.env.template /usr/share/$PKG_NAME/.env
fi
# 3. Setup Autostart for the graphical desktop
AUTOSTART_DIR="\$USER_HOME/.config/autostart"
mkdir -p "\$AUTOSTART_DIR"
cp /usr/share/$PKG_NAME/setup/$PKG_NAME.desktop "\$AUTOSTART_DIR/"
# 4. Fix Chromium Profile Permissions (Resolves the 'Profile Error')
# This ensures the standard user can write to their own config
if [ -d "\$USER_HOME/.config/chromium" ]; then
chown -R \$REAL_USER:\$REAL_USER "\$USER_HOME/.config/chromium"
rm -f "\$USER_HOME/.config/chromium/SingletonLock"
fi
# 5. Set correct ownership for the autostart file
chown -R \$REAL_USER:\$REAL_USER "\$AUTOSTART_DIR/$PKG_NAME.desktop"
echo "Installation complete. The app will start on the next Desktop login."
EOF EOF
chmod 555 $BUILD_DIR/DEBIAN/postinst chmod 555 $BUILD_DIR/DEBIAN/postinst