Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.47 KB | None | 0 0
  1.  tasks:
  2.     - include_tasks: "configure-btrfs.yml"
  3.       when: "{{ lookup('first_found', '/var/lib/machines/machines.raw', errors='ignore') }}" == ""
  4.  
  5.     # Debootstrap
  6.     - name: Download a base debian package
  7.       command:
  8.         cmd: "debootstrap --arch=amd64 --variant=buildd \
  9.        --include=vim,curl,git,systemd \
  10.        buster debian_build http://deb.debian.org/debian"
  11.         chdir: "/var/lib/machines"
  12.         creates: "/var/lib/machines/debian_build"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement