From d51b5baed7ed2efea1e82a09daf9508f7d937be0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Juri=C5=A1i=C4=87?= Date: Mon, 20 Mar 2023 10:27:00 +0100 Subject: [PATCH] Added missing occ. Thanks to panik --- debian/usr/sbin/occ | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 debian/usr/sbin/occ diff --git a/debian/usr/sbin/occ b/debian/usr/sbin/occ new file mode 100755 index 0000000..4f641c7 --- /dev/null +++ b/debian/usr/sbin/occ @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ $(id -u) -eq 0 ] || [ $(id -u) -eq 33 ];then + OPT="$@" + su www-data -s /bin/sh -c "/usr/bin/php /var/www/nextcloud/occ $OPT" +else + echo "Please run as root" +fi