workstation/roles/netbsd/tasks/packages-cli.yml

14 lines
355 B
YAML
Raw Normal View History

2019-11-10 17:05:01 +00:00
---
2019-11-10 17:20:35 +00:00
- name: Configure pkg to ignore OSABI
become: true
lineinfile:
path: /etc/pkg_install.conf
regexp: '^CHECK_OSABI='
line: 'CHECK_OSABI=no'
create: yes
- name: Install CLI packages
2019-11-10 17:05:01 +00:00
become: true
pkgin:
name: git,gnupg2,mc,mozilla-rootcerts-openssl,nmap,openvpn,pkgin,py37-pip,python37,sqlite3,sudo,tmux,zsh
2019-11-10 17:05:01 +00:00
state: present