From 93be7897901505bf34c265a411e6244933d95d0d Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 16 Jun 2025 12:19:01 -0600 Subject: [PATCH] Fix the "the input device is not a TTY" cron log message. --- Config/Nextcloud/cron.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/Nextcloud/cron.sh b/Config/Nextcloud/cron.sh index 88f94f6..877360c 100755 --- a/Config/Nextcloud/cron.sh +++ b/Config/Nextcloud/cron.sh @@ -22,7 +22,7 @@ fi sh -c "docker exec -u www-data nc-app php cron.php --define apc.enable_cli=1" # 2023-08-25 From fixes.sh, keep ownership correct and apps up to date. -sh -c "docker exec -it nc-app chown -Rc www-data:www-data ." +sh -c "docker exec -i nc-app chown -Rc www-data:www-data ." # No longer update apps in advance of NC updates, allow the upgrade process to do it. #sh -c "docker exec -itu www-data nc-app ./occ app:update --all"