Add 'install plugins from cli'

bsod 2021-02-23 18:12:58 +01:00
parent 264d1fd750
commit fce8c6b7a5

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