mirror of
https://github.com/MHA-Team/PTS-Team.git
synced 2026-02-15 10:42:35 +00:00
14 lines
418 B
Bash
14 lines
418 B
Bash
#!/bin/bash
|
|
#
|
|
# Title: PGBlitz (Reference Title File)
|
|
# Author(s): Admin9705
|
|
# URL: https://pgblitz.com - http://github.pgblitz.com
|
|
# GNU: General Public License v3.0
|
|
################################################################################
|
|
touch /var/plexguide
|
|
if [[ $(docker ps | grep oauth) == "" ]]; then
|
|
echo null >/var/plexguide/auth.var
|
|
else
|
|
echo good >/var/plexguide/auth.var
|
|
fi
|