Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 418 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 418 Bytes

Ubuntu common roles for ansible

Create ./library directory in your ansible project:

mkdir ./library

And configure ansible.cfg:

[defaults]
roles_path = ./library

Add submodule:

git submodule add git@github.com:kressh/ansible-ubuntu-common.git library/ubuntu-common

Use role:

---
- hosts: yourserver.io
  remote_user: ansible
  become: true
  roles:
    - ubuntu-common