Skip to content

Commit 877a9bd

Browse files
authored
Fix RO update check
1 parent 3b7c8dd commit 877a9bd

File tree

1 file changed

+1
-1
lines changed
  • root/etc/s6-overlay/s6-rc.d/init-plex-update

1 file changed

+1
-1
lines changed

root/etc/s6-overlay/s6-rc.d/init-plex-update/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/with-contenv bash
22
# shellcheck shell=bash
33

4-
if [[ -z ${LSIO_READ_ONLY_FS} ]] || [[ -z ${LSIO_NON_ROOT_USER} ]]; then
4+
if [[ -n ${LSIO_READ_ONLY_FS} ]] || [[ -n ${LSIO_NON_ROOT_USER} ]]; then
55
echo "Runtime update not supported with read-only or non-root operation, skipping."
66
exit 0
77
fi

0 commit comments

Comments
 (0)