README - ansible-roles - A collection of ansible roles I have created over the years.
(HTM) git clone git://jay.scot/ansible-roles
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
README (800B)
---
1 -= jayscott.stagit =-
2
3 Install and configure a working copy of the suckless stagit application.
4
5
6 Requirements
7 ------------
8
9 None
10
11
12 Role Variables
13 --------------
14
15 stagit:
16 user: root
17 repo_url: git://git.codemadness.org/stagit
18 version: HEAD
19 build_path: /opt/stagit
20 install_path: /usr/local/bin
21 git_repos_path: /opt/git
22 html_path: /var/www/stagit
23
24 cron_enabled: false
25 posthook_enabled: false
26
27 posthook_enabled will install a git hook within git_repos_path directories,
28 this will run create_index on a push. To over-ride the default style.css,
29 logo.png and favicon.png just add a copy block for your local files
30 within your playbook.
31
32
33 Dependencies
34 ------------
35
36 None
37
38
39 Example Playbook
40 ----------------
41
42 - hosts: servers
43 roles:
44 - { role: jayscott.stagit }