You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
356 B

  1. ---
  2. - name: Install rkt
  3. import_tasks: install.yml
  4. when: not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
  5. - name: Set up cron job to do garbage cleanup
  6. copy:
  7. src: rkt-gc.sh
  8. dest: /etc/cron.hourly/rkt-gc.sh
  9. owner: root
  10. group: root
  11. mode: 0750
  12. when: not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]