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
- Host: GitHub
- URL: https://github.com/bsedin/ansible-provision
- Owner: bsedin
- License: mit
- Created: 2018-03-12T14:16:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T09:53:55.000Z (about 6 years ago)
- Last Synced: 2025-02-09T01:17:44.165Z (over 1 year ago)
- Topics: ansible-role, ubuntu
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- 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-provision.git library/provision
```
Use role:
```yaml
---
- hosts: yourserver.io
remote_user: ansible
become: true
roles:
- provision
```