From fce8c6b7a50451835868149ba9ddd1f05f9eaf16 Mon Sep 17 00:00:00 2001 From: bsod Date: Tue, 23 Feb 2021 18:12:58 +0100 Subject: [PATCH] Add 'install plugins from cli' --- install-plugins-from-cli.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 install-plugins-from-cli.md diff --git a/install-plugins-from-cli.md b/install-plugins-from-cli.md new file mode 100644 index 0000000..60ab36a --- /dev/null +++ b/install-plugins-from-cli.md @@ -0,0 +1,6 @@ +simple shell script to install plugins from the cli (might be necessary after rebuild of container) + +```bash +apps="bookmarks calendar contacts deck news notes polls spreed tasks" +for app in $apps; do sudo -u www-data php occ app:install $app; done +``` \ No newline at end of file