diff --git a/armbian/monitoring.md b/armbian/monitoring.md index 45a2059..6bd596d 100644 --- a/armbian/monitoring.md +++ b/armbian/monitoring.md @@ -25,7 +25,7 @@ apt install munin munin-node \ munin-plugins-core munin-plugins-extra \ libcgi-fast-perl systemctl enable munin-node -systemcl restart munin-node +systemctl restart munin-node ``` diff --git a/services/nextcloud.md b/services/nextcloud.md index 5881bed..d780928 100644 --- a/services/nextcloud.md +++ b/services/nextcloud.md @@ -20,9 +20,9 @@ Setup a generic script that'll auto update NextCloud, build a container and laun ``` bash mkdir /var/nextcloud -chown www-data /var/nextcloud +chown -R www-data: /var/nextcloud -cat > /root/docker/nextcloud.sh < /scratch/docker/nextcloud.sh < /root/docker/postgres.sh << EOF +cat > /scratch/docker/postgres.sh << EOF #!/bin/bash VERSION="" @@ -46,10 +46,10 @@ docker run \\ \$VERSION EOF -chmod a+x /root/docker/postgres.sh +chmod a+x /scratch/docker/postgres.sh ``` ## Run Postgres -Simply execute ```/root/docker/postgres.sh``` to update/run Postgres. +Simply execute ```/scratch/docker/postgres.sh``` to update/run Postgres.