An open API service indexing awesome lists of open source software.

https://github.com/bsedin/ansible-provision

Initial ansible provision for clean ubuntu server
https://github.com/bsedin/ansible-provision

ansible-role ubuntu

Last synced: about 1 year ago
JSON representation

Initial ansible provision for clean ubuntu server

Awesome Lists containing this project

README

          

# 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-provision.git library/provision
```

Use role:

```yaml
---
- hosts: yourserver.io
remote_user: ansible
become: true
roles:
- provision
```