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

https://github.com/bsedin/ansible-ubuntu-common

Ubuntu common recipes
https://github.com/bsedin/ansible-ubuntu-common

ansible-role cpufreq fail2ban ssh ubuntu

Last synced: 10 months ago
JSON representation

Ubuntu common recipes

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-ubuntu-common.git library/ubuntu-common
```

Use role:

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