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
- Host: GitHub
- URL: https://github.com/bsedin/ansible-ubuntu-common
- Owner: bsedin
- License: mit
- Created: 2018-03-12T09:07:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-08T06:25:44.000Z (about 6 years ago)
- Last Synced: 2025-04-03T11:45:39.979Z (about 1 year ago)
- Topics: ansible-role, cpufreq, fail2ban, ssh, ubuntu
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```