Autogenerated commit at 2026-01-21 11:08:29.223728+00:00

This commit is contained in:
ahriman
2026-01-21 11:08:29 +00:00
parent 21290f328f
commit ed25f457ac
7 changed files with 802 additions and 0 deletions

15
rustdesk/rustdesk.install Normal file
View File

@@ -0,0 +1,15 @@
# arg 1: the new package version
post_install() {
if systemctl -q is-enabled 'rustdesk.service'; then
systemctl daemon-reload
systemctl restart 'rustdesk.service'
fi
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
if systemctl -q is-enabled 'rustdesk.service'; then
systemctl restart 'rustdesk.service'
fi
}