diff --git a/cloudbox.yml b/cloudbox.yml index de52ea5..f67342f 100644 --- a/cloudbox.yml +++ b/cloudbox.yml @@ -2,7 +2,8 @@ # This playbook deploys the cloudbox on a minimal installation. - name: apply configuration to the cloudbox - hosts: cloudboxes + # hosts: cloudboxes ## 'all' is needed to make ansible-pull work + hosts: all remote_user: ansible become: true vars: @@ -15,7 +16,7 @@ ## 'nc_download' and 'nc_checksum' are only ## used for ansible-pull during installation: nc_download: "https://download.nextcloud.com/server/releases/latest.tar.bz2" - nc_checksum: "sha256:770faf34b8f0d81273623daed4d64ec7919c38dfeb07328b613058addbed19c0" + nc_checksum: "sha256:d32a8f6c4722a45cb67de7018163cfafcfa22a871fbac0f623c3875fa4304e5a" nc_apps: - calendar - notes diff --git a/roles/nextcloud/tasks/main.yml b/roles/nextcloud/tasks/main.yml index 25c6163..565682e 100644 --- a/roles/nextcloud/tasks/main.yml +++ b/roles/nextcloud/tasks/main.yml @@ -160,7 +160,7 @@ when: not nextcloud.stat.exists and not run_in_installer|default(false)|bool - name: start mariadb during installation - command: /etc/init.d/mysql start + command: /etc/init.d/mariadb start when: run_in_installer|default(false)|bool - name: create database with name 'nextcloud'