mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-07 12:20:03 +03:00
It was used to conditionally install a Python module in the past. But that is not the case anymore since https://github.com/rustdesk/rustdesk/commit/37dbfcc. Now the check is obsolete. Due to `set -e`, the check leads to a package configuration failure if Python is not installed, which however otherwise is not needed for RustDesk. The commit includes an indentation fix and trailing space removal. Signed-off-by: MichaIng <micha@dietpi.com>
28 lines
1012 B
Bash
Executable File
28 lines
1012 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" = configure ]; then
|
|
|
|
INITSYS=$(ls -al /proc/1/exe | awk -F' ' '{print $NF}' | awk -F'/' '{print $NF}')
|
|
ln -f -s /usr/share/rustdesk/rustdesk /usr/bin/rustdesk
|
|
|
|
if [ "systemd" == "$INITSYS" ]; then
|
|
|
|
if [ -e /etc/systemd/system/rustdesk.service ]; then
|
|
rm /etc/systemd/system/rustdesk.service /usr/lib/systemd/system/rustdesk.service /usr/lib/systemd/user/rustdesk.service >/dev/null 2>&1
|
|
fi
|
|
mkdir -p /usr/lib/systemd/system/
|
|
cp /usr/share/rustdesk/files/systemd/rustdesk.service /usr/lib/systemd/system/rustdesk.service
|
|
# try fix error in Ubuntu 18.04
|
|
# Failed to reload rustdesk.service: Unit rustdesk.service is not loaded properly: Exec format error.
|
|
# /usr/lib/systemd/system/rustdesk.service:10: Executable path is not absolute: pkill -f "rustdesk --"
|
|
if [ -e /usr/bin/pkill ]; then
|
|
sed -i "s|pkill|/usr/bin/pkill|g" /usr/lib/systemd/system/rustdesk.service
|
|
fi
|
|
systemctl daemon-reload
|
|
systemctl enable rustdesk
|
|
systemctl start rustdesk
|
|
fi
|
|
fi
|