typo fix apt-install -> apt-get install

This commit is contained in:
AJ ONeal 2018-11-20 16:59:32 -07:00
parent 4f0db8bc9c
commit 8bf4bfc7c0
1 changed files with 2 additions and 2 deletions

View File

@ -506,8 +506,8 @@ elif [ "systemd" == "$my_system_launcher" ]; then
systemctl --user start $my_app >/dev/null
else
echo "libpam-systemd is missing, which is required on Linux to register Telebit with the user launcher."
echo "sudo apt-install -y libpam-systemd"
sudo apt-install -y libpam-systemd
echo "sudo apt-get install -y libpam-systemd"
sudo apt-get install -y libpam-systemd
fi
sleep 2; # give it time to start
_is_running=$(systemctl --user status --no-pager $my_app 2>/dev/null | grep "active.*running")