diff options
author | hakwerk <github@hakwerk.com> | 2022-03-11 17:27:03 +0100 |
---|---|---|
committer | hakwerk <github@hakwerk.com> | 2022-03-11 17:27:03 +0100 |
commit | 5de37d1e2cb80d2f15a9ee337e786c6fbb047bd5 (patch) | |
tree | 62615384ef42c66c0debabc31e7e92206935d6cb /roles/install-custom-packages | |
parent | d1d689db34c88a68f6220868144c58ea075e75b8 (diff) | |
download | vyos-vm-images-5de37d1e2cb80d2f15a9ee337e786c6fbb047bd5.tar.gz vyos-vm-images-5de37d1e2cb80d2f15a9ee337e786c6fbb047bd5.zip |
T4298: fix ansible group name and remove obsolete empty command
After commit 680a2b4 ("fix errors in custom package install") an empty
"command:" remained.
Diffstat (limited to 'roles/install-custom-packages')
-rw-r--r-- | roles/install-custom-packages/tasks/main.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/roles/install-custom-packages/tasks/main.yml b/roles/install-custom-packages/tasks/main.yml index de7ef26..d3a0cbf 100644 --- a/roles/install-custom-packages/tasks/main.yml +++ b/roles/install-custom-packages/tasks/main.yml @@ -31,7 +31,6 @@ become: true command: chroot {{ vyos_install_root }} apt-get -t {{ vyos_branch | default('current') }} install -y --no-install-recommends {{ lookup('file', 'files/custom_packages_list.txt') }} - name: Install custom packages from deb files - command: become: true command: chroot {{ vyos_install_root }} dpkg -i --force-depends /tmp/custom_debs/{{ item | basename }} with_fileglob: "{{ vyos_install_root }}/tmp/custom_debs/*.deb" |