9 lines
171 B
Plaintext
9 lines
171 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
echo "Stopping Plexdrive"
|
|
home="$(echo ~plex)"
|
|
|
|
exec s6-setuidgid plex \
|
|
/bin/sh -c \
|
|
"/bin/fusermount -u -z ${PLEXDRIVE_MOUNT_POINT}"
|