Nextcloud_Installer/config/nextcloud/wrapper

7 lines
172 B
Plaintext
Raw Normal View History

2024-02-10 10:01:32 +00:00
#!/bin/bash
if [[ $USER == "nextcloud" ]]; then
php --define apc.enable_cli=1 /nextcloud/occ $@
else
sudo -u nextcloud php --define apc.enable_cli=1 /nextcloud/occ $@
fi