From 19f34554b6dbee62070ab147e790d21d6e759cca Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Fri, 13 Nov 2015 17:07:49 -0500 Subject: added the tito and copr_cli roles --- roles/tito/README.md | 38 ++++++++++++++++++++++++++++++++++++++ roles/tito/defaults/main.yml | 2 ++ roles/tito/handlers/main.yml | 2 ++ roles/tito/meta/main.yml | 14 ++++++++++++++ roles/tito/tasks/main.yml | 4 ++++ roles/tito/vars/main.yml | 2 ++ 6 files changed, 62 insertions(+) create mode 100644 roles/tito/README.md create mode 100644 roles/tito/defaults/main.yml create mode 100644 roles/tito/handlers/main.yml create mode 100644 roles/tito/meta/main.yml create mode 100644 roles/tito/tasks/main.yml create mode 100644 roles/tito/vars/main.yml (limited to 'roles/tito') diff --git a/roles/tito/README.md b/roles/tito/README.md new file mode 100644 index 000000000..c4e2856dc --- /dev/null +++ b/roles/tito/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +This role manages Tito. + +https://github.com/dgoodwin/tito + +Requirements +------------ + +None + +Role Variables +-------------- + +None + +Dependencies +------------ + +None + +Example Playbook +---------------- + + - hosts: servers + roles: + - role: tito + +License +------- + +Apache License, Version 2.0 + +Author Information +------------------ + +Thomas Wiest diff --git a/roles/tito/defaults/main.yml b/roles/tito/defaults/main.yml new file mode 100644 index 000000000..dd7cd269e --- /dev/null +++ b/roles/tito/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for tito diff --git a/roles/tito/handlers/main.yml b/roles/tito/handlers/main.yml new file mode 100644 index 000000000..e9ce609d5 --- /dev/null +++ b/roles/tito/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for tito diff --git a/roles/tito/meta/main.yml b/roles/tito/meta/main.yml new file mode 100644 index 000000000..fb121c08e --- /dev/null +++ b/roles/tito/meta/main.yml @@ -0,0 +1,14 @@ +--- +galaxy_info: + author: Thomas Wiest + description: Manages Tito + company: Red Hat + license: Apache License, Version 2.0 + min_ansible_version: 1.2 + platforms: + - name: EL + versions: + - 7 + categories: + - packaging +dependencies: [] diff --git a/roles/tito/tasks/main.yml b/roles/tito/tasks/main.yml new file mode 100644 index 000000000..f7b4ef363 --- /dev/null +++ b/roles/tito/tasks/main.yml @@ -0,0 +1,4 @@ +--- +- yum: + name: tito + state: present diff --git a/roles/tito/vars/main.yml b/roles/tito/vars/main.yml new file mode 100644 index 000000000..8a1aafc41 --- /dev/null +++ b/roles/tito/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for tito -- cgit v1.2.3