Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions v24.04/overlay/usr/bin/owncloud
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ installed)
exit 0
fi
;;
occ)
for FILE in $(find /etc/owncloud.d -iname "*.sh" | sort); do
# shellcheck disable=SC1090,SC2086
source ${FILE}
done

shift
exec occ "$@"
;;
*)
for FILE in $(find /etc/owncloud.d -iname "*.sh" | sort); do
# shellcheck disable=SC1090,SC2086
Expand Down