7 Commits

8 changed files with 63 additions and 0 deletions

4
playbooks/1password.yaml Normal file
View File

@@ -0,0 +1,4 @@
---
- hosts: localhost
roles:
- 1password

View File

@@ -0,0 +1,22 @@
---
- name: add yum repository key
become: true
rpm_key:
key: https://downloads.1password.com/linux/keys/1password.asc
- name: add yum repository
become: true
yum_repository:
name: 1password
description: 1Password Stable Channel
baseurl: https://downloads.1password.com/linux/rpm/stable/$basearch
enabled: true
gpgcheck: true
repo_gpgcheck: true
gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc']
- name: install yum package
become: true
yum:
name: 1password
state: latest

View File

@@ -0,0 +1,6 @@
---
- name: install yum package
become: true
yum:
name: neovim
state: latest

View File

@@ -8,3 +8,4 @@
- python3-pip - python3-pip
- python3-venv - python3-venv
- python3-virtualenv - python3-virtualenv
state: latest

View File

@@ -0,0 +1,9 @@
---
- name: install yum packages
become: true
yum:
name:
- python3
- python3-pip
- python3-virtualenv
state: latest

View File

@@ -0,0 +1,3 @@
---
sudo_owner: root
sudo_group: wheel

View File

@@ -0,0 +1,10 @@
---
- name: install yum packages
become: true
yum:
name:
- tmux
- sysstat
- urlview
- xsel
state: latest

View File

@@ -0,0 +1,8 @@
---
- name: install yum packages
become: true
yum:
name:
- zsh
- pinentry-tty
state: latest