Skip to content

Commit

Permalink
Install postman from snap.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelaiw committed Aug 4, 2023
1 parent e9766ae commit fef53c5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ansible/postman.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
- name: postman
hosts: kali
remote_user: kali
tasks:
- name: Install snapd
ansible.builtin.apt:
name: snapd
state: latest
become: yes
- name: Enable and start snap service
ansible.builtin.systemd:
name: snapd
state: started
enabled: true
become: yes
- name: Install Postman
community.general.snap:
name: postman
state: present
become: yes

0 comments on commit fef53c5

Please sign in to comment.