Fix stupid error in install script

This commit is contained in:
Alexandre CATTEAU 2022-12-21 10:08:57 +01:00
parent 73821bc3ba
commit 1a6f82d535

View File

@ -16,15 +16,15 @@ fi
if [ -x /usr/bin/apt-get ]; then
echo "APT detected, copying Systemd unit to system directory, using APT template..."
$sudo cp systemd-templates/packages-upgrade-apt.service /etc/systemd/system/packages-upgrade.service
$sudo cp $run_directory/systemd-templates/packages-upgrade-apt.service /etc/systemd/system/packages-upgrade.service
elif [ -x /usr/bin/pacman ]; then
echo "Pacman detected, copying Systemd unit to system directory, using Pacman template..."
$sudo cp systemd-templates/packages-upgrade-pacman.service /etc/systemd/system/packages-upgrade.service
$sudo cp $run_directory/systemd-templates/packages-upgrade-pacman.service /etc/systemd/system/packages-upgrade.service
else
echo "No supported package manager found. Only APT and Pacman are currently supported. Exiting..."
exit 1
fi
$sudo cp systemd-templates/packages-upgrade.timer /etc/systemd/system/packages-upgrade.timer
$sudo cp $run_directory/systemd-templates/packages-upgrade.timer /etc/systemd/system/packages-upgrade.timer
echo "Reloading Systemd..."
$sudo systemctl daemon-reload