mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
8 lines
145 B
Bash
8 lines
145 B
Bash
#!/usr/bin/env bash
|
|
|
|
if ncc app_api:daemon:list | grep 'No registered daemon configs.' > /dev/null 2>&1
|
|
then
|
|
ncc app:disable app_api
|
|
fi
|
|
|
|
exit 0 |