diff options
author | Kim <kim.sidney@gmail.com> | 2021-06-28 12:57:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-28 12:57:35 +0200 |
commit | b077c2942620581bdb519e6584a40cb383a841e0 (patch) | |
tree | 5d9e98c1be886bb2bf9bc3d9da676c78caa90fda /roles/copy-iso-content/tasks | |
parent | e0ad618192bd652f7a26ed4f34265d4f7de9c45b (diff) | |
download | vyos-vm-images-b077c2942620581bdb519e6584a40cb383a841e0.tar.gz vyos-vm-images-b077c2942620581bdb519e6584a40cb383a841e0.zip |
add ability to rebuild an ISO
Diffstat (limited to 'roles/copy-iso-content/tasks')
-rw-r--r-- | roles/copy-iso-content/tasks/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/copy-iso-content/tasks/main.yml b/roles/copy-iso-content/tasks/main.yml new file mode 100644 index 0000000..fb6571a --- /dev/null +++ b/roles/copy-iso-content/tasks/main.yml @@ -0,0 +1,5 @@ +- name: copy iso files + become: true + synchronize: + src: "/mnt/cdrom/" + dest: "/tmp/live-{{ vyos_version }}" |