mirror of
https://github.com/dkmstr/openuds.git
synced 2025-01-06 13:17:54 +03:00
17 lines
353 B
Bash
17 lines
353 B
Bash
#!/bin/sh
|
|
|
|
# Check for root
|
|
if ! [ $(id -u) = 0 ]; then
|
|
echo "This script must be run as root"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Installing UDSClient Portable..."
|
|
|
|
cp UDSClient-0.0.0-x86_64.AppImage /usr/bin
|
|
chmod 755 /usr/bin/UDSClient-0.0.0-x86_64.AppImage
|
|
cp UDSClient.desktop /usr/share/applications
|
|
update-desktop-database
|
|
|
|
echo "Installation process done."
|