update 14/04/2025

This commit is contained in:
Thomas Legay 2025-04-14 18:51:11 +02:00
parent ffb7217f7f
commit 0026da2286
56 changed files with 135 additions and 117 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
APP=rustdesk-server
VERSION=1.1.13
VERSION=1.1.14
GIT_VERSION=$VERSION
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
DEBIAN_VERSION_CODENAME=bookworm

View file

@ -1,4 +1,7 @@
#!/bin/bash
id hbbr &> /dev/null || useradd hbbr -r -s /bin/false -md /var/lib/hbbr
chown hbbr:hbbr /var/lib/hbbr
APP=hbbr
id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/
chown -R $APP:$APP /var/lib/$APP/

View file

@ -1,4 +1,7 @@
#!/bin/bash
id hbbs &> /dev/null || useradd hbbs -r -s /bin/false -md /var/lib/hbbs
chown hbbs:hbbs /var/lib/hbbs
APP=hbbs
id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/
chown -R $APP:$APP /var/lib/$APP/