Initial commit
This commit is contained in:
7
ansible/ansible.cfg
Normal file
7
ansible/ansible.cfg
Normal file
@@ -0,0 +1,7 @@
|
||||
[defaults]
|
||||
inventory = inventory
|
||||
remote_user = root
|
||||
host_key_checking = False
|
||||
private_key_file = ~/.ssh/id_rsa
|
||||
vault_password_file = ~/.ssh/.vault_pass.txt
|
||||
roles_path = ./roles
|
10
ansible/init.yml
Normal file
10
ansible/init.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
- hosts: all
|
||||
gather_facts: false
|
||||
become: true
|
||||
roles:
|
||||
- ramdisk_attach
|
||||
|
||||
vars:
|
||||
ramdisk_disk_path: "/tmp/ramdisk"
|
||||
ramdisk_size: "2G"
|
||||
ramdisk_state: "present" # present or absent
|
3
ansible/requirements.yml
Normal file
3
ansible/requirements.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
- name: kerio-letsencrypt
|
||||
src: git+https://gitlab.amegaserver.com/roles-ansible/vasyakrg-ramdisk-attach.git
|
||||
version: origin/master
|
1
ansible/roles/ramdisk_attach
Symbolic link
1
ansible/roles/ramdisk_attach
Symbolic link
@@ -0,0 +1 @@
|
||||
/Users/vasyansk/Develops/MyProject/Repos/Ansible-Roles/vasyakrg.ramdisk_attach
|
Reference in New Issue
Block a user