update nextcloud to v13

adjust the ddagent_source script to not block on starting or installing integration
This commit is contained in:
2018-02-25 15:41:47 -05:00
parent 5fae85734b
commit d778f68993
5 changed files with 10 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
---
# main tasks for setting up motd dynamic shell header
- debug: var=ansible_nodename
- name: Install the nginx packages
apt:
@@ -13,7 +14,7 @@
- figlet
- update-motd
- lm-sensors
when: "ansible_nodename != 'cubox-i'"
when: ansible_architecture == 'armv7l'
- name: remove help text
@@ -23,7 +24,7 @@
with_items:
- /etc/update-motd.d/10-help-text
- /etc/update-motd.d/51-cloudguest
when: "ansible_nodename != 'cubox-i'"
when: ansible_architecture == 'armv7l'
- name: add new info
@@ -34,4 +35,4 @@
with_items:
- { src: hostname.sh, dest: 10-hostname }
- { src: systats.sh, dest: 11-sysstats}
when: "ansible_nodename != 'cubox-i'"
when: ansible_architecture == 'armv7l'