This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/packaging/ubuntu/debian-qt6/nymea-app-kiosk-wayland.postinst
2025-12-05 13:40:20 +01:00

18 lines
397 B
Bash

#!/bin/sh
# Restart nymea-app after update if it's running
systemctl daemon-reload
systemctl status nymea-app-kiosk > /dev/null 2>&1
if [ $? -eq 0 ]; then
systemctl restart nymea-app-kiosk
if [ $? -eq 0 ]; then
echo "Successfully restarted nymea app kiosk."
else
echo "FAILED to restart nymea app kiosk."
fi
fi
#DEBHELPER#
exit 0