Initial commit

This commit is contained in:
Vassiliy Yegorov
2019-09-13 12:27:54 +07:00
commit c51ac8681d
6 changed files with 80 additions and 0 deletions

7
ansible/ansible.cfg Normal file
View 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
View 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
View File

@@ -0,0 +1,3 @@
- name: kerio-letsencrypt
src: git+https://gitlab.amegaserver.com/roles-ansible/vasyakrg-ramdisk-attach.git
version: origin/master

View File

@@ -0,0 +1 @@
/Users/vasyansk/Develops/MyProject/Repos/Ansible-Roles/vasyakrg.ramdisk_attach