Razique Mahroua
2020-03-18 b85c91a8192593f6b62f93e11c971868964343a9
commit | author | age
93d261 1 [![Build Status](https://travis-ci.org/while-true-do/ansible-role-cockpit.svg?branch=master)](https://travis-ci.org/while-true-do/ansible-role-cockpit)
SS 2
3 # Ansible Role: cockpit
4 | A role to install cockpit packages.
5
6 ## Installation
7
8 Galaxy Link: <https://galaxy.ansible.com/while-true-do/cockpit>
9
10 ```
11 ansible-galaxy install while-true-do.cockpit
12 ```
13
14 Github Link: <https://github.com/while-true-do/ansible-role-cockpit>
15
16 ```
17 git clone https://github.com/while-true-do/ansible-role-cockpit while-true-do.cockpit
18 ```
19
20 ## Requirements
21
22 None.
23
24 ## Dependencies
25
26 None.
27
28 ## Role Variables
29
30 ```
31 # defaults/main.yml
32 cockpit_packages: ['cockpit-bridge', 'cockpit-shell', 'cockpit-storaged', 'cockpit-networkmanager']
33 ```
34
35 ## Example Playbook
36
37 Simple Example: Without webserver, so you can access it from another instance
38
39 ```
40 - hosts: servers
41   roles:
42     - { role: while-true-do.cockpit }
43 ```
44
45 Advanced Example: To install cockpit including cockpit-ws
46
47 ```
48 - hosts: servers
49   roles:
50   - { role: while-true-do.cockpit, cockpit_packages: [ 'cockpit' ] }
51 ```
52
53 ## License
54
55 This work is licensed under a [BSD License](https://opensource.org/licenses/BSD-3-Clause).
56
57 ## Contribute / Bugs
58
59 **bug reports:** <https://github.com/while-true-do/ansible-role-cockpit/issues>
60
61 **contributers:** <https://github.com/while-true-do/ansible-role-cockpit/graphs/contributors>
62
63 ## Author Information
64
65 **blog:** <https://blog.while-true-do.org>
66
67 **github:** <https://github.com/daniel-wtd>
68
69 **contact:** [mail@while-true-do.org](mailto:mail@while-true-do.org)