collection of ansible roles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- name: add gogs user
|
|
user:
|
|
name: _gogs
|
|
- name: install {{ item }}
|
|
community.general.openbsd_pkg:
|
|
name: {{ item }}
|
|
state: present
|
|
snapshot: "{{ force_openbsd_snapshot | default(false) }}"
|
|
with_items:
|
|
- git
|
|
- go
|
|
|