mirror of
https://github.com/acedanger/shell.git
synced 2025-12-06 01:10:12 -08:00
15 lines
390 B
Bash
Executable File
15 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# checks if the plexmediaserver.service is defined on this machine. stop it if it is.
|
|
if systemctl is-active --quiet plexmediaserver.service; then
|
|
sudo plex stop
|
|
fi
|
|
|
|
sudo nala update
|
|
sudo nala upgrade -y
|
|
|
|
# checks if the plexmediaserver.service is defined on this machine. start it if it is.
|
|
if systemctl is-enabled --quiet plexmediaserver.service; then
|
|
sudo plex start
|
|
fi
|