main.yml 258 B

123456789101112131415
  1. ---
  2. - name: Install netcat
  3. opkg:
  4. name: ncat
  5. update_cache: true
  6. autoremove: true
  7. - name: Install babeld cli
  8. copy:
  9. src: files/babeld-cli.sh
  10. dest: /root/babeld-cli.sh
  11. - name: Enable babeld cli
  12. command: "chmod +x /root/babeld-cli.sh"