Added missing occ. Thanks to panik

This commit is contained in:
Ivan Jurišić 2023-03-20 10:27:00 +01:00
parent cf0e47c76a
commit d51b5baed7

8
debian/usr/sbin/occ vendored Executable file
View File

@ -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