diff options
-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" |