- name: Download vn-host Debian package get_url: url: "{{ repo_url }}" dest: "{{ package_path }}" mode: '0644' - name: Install package apt: deb: "{{ package_path }}" - name: Delete package file: path: "{{ package_path }}" state: absent