Upload files to "/"

master
ThousandBestLives 2024-06-21 00:46:49 +00:00
commit e493e3560b
5 changed files with 42 additions and 0 deletions

1
README.md 100644
View File

@ -0,0 +1 @@
# ansible-pull-example

1
inventory 100644
View File

@ -0,0 +1 @@
localhost

11
local.yml 100644
View File

@ -0,0 +1,11 @@
---
- hosts: localhost
roles:
- git
- go
- zig
- fish
- kakoune
- tmux
- mysql-5-7
- rust

4
pull.sh 100644
View File

@ -0,0 +1,4 @@
#!/bin/sh
ansible-galaxy install -r requirements.yml -f
ansible-playbook local.yml

25
requirements.yml 100644
View File

@ -0,0 +1,25 @@
---
- name: git
src: git@github.com:xxxxxx/ansible-role-git.git
scm: git
- name: go
src: git@github.com:xxxxxx/ansible-role-go.git
scm: git
- name: zig
src: git@github.com:xxxxxx/ansible-role-zig.git
scm: git
- name: kakoune
src: git@github.com:xxxxxx/ansible-role-kakoune.git
scm: git
- name: tmux
src: git@github.com:xxxxxx/ansible-role-tmux.git
scm: git
- name: fish
src: git@github.com:xxxxxx/ansible-role-fish.git
scm: git
- name: mysql-5-7
src: git@github.com:xxxxxx/ansible-role-mysql-5-7.git
scm: git
- name: rust
src: git@github.com:xxxxxx/ansible-role-rust.git
scm: git