main.yml 500 B

123456789101112
  1. - name: git für ffapi
  2. git: repo=https://github.com/FreiFunkMuenster/services-ffms.git dest=/usr/src/services-ffms force=yes version=master
  3. - name: Verzeichnis für ffapi.json
  4. file: path=/var/www/html/freifunk state=directory mode=0755
  5. - name: ffapi-update-nodes.sh kopieren
  6. copy: src=ffapi-update-nodes.sh dest=/usr/local/bin/ffapi-update-nodes.sh mode=0755
  7. - name: cron für ffapi-update-nodes.sh
  8. cron: name="ffapi" minute="0" job="/usr/local/bin/ffapi-update-nodes.sh >/dev/null 2>&1"