Added comments

This commit is contained in:
Ian 2015-10-27 12:39:13 -05:00
commit 6de8c36d72

View file

@ -321,10 +321,12 @@ if [ "${AUTOSTART}" == "yes" ]; then
elif [ "${REDHAT}" == "no" ]; then elif [ "${REDHAT}" == "no" ]; then
echo "The AUTOSTART [-s] option may not be needed on your distribution." echo "The AUTOSTART [-s] option may not be needed on your distribution."
fi fi
# Check for systemd
if [ -f "/bin/systemctl" ]; then if [ -f "/bin/systemctl" ]; then
sudo systemctl start plexmediaserver.service systemctl start plexmediaserver.service
else else
sudo service plexmediaserver start service plexmediaserver start
fi fi
fi fi