Skip to content

Commit fa3731e

Browse files
author
Saurabh Kumar
committed
Add ansible role for hubot
- [x] setup host hubot.pydelhi.org - [x] setup prerequisites - [ ] make it working __References:__ 1. https://github.com/nandub/hubot-irc 2. https://github.com/github/hubot
1 parent 2d348dc commit fa3731e

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66
### Added
7+
- Ansible role for setting up hubot (#8)
78
- Ansible galaxy integration (#9)
89
- Add .travis.yml for running CI test
910
- Add getting up and running documentation

playbook.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44

55
roles:
66
- common
7+
- hubot

requirements.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@
22

33
# https://github.com/yatesr/ansible-timezone
44
- src: yatesr.timezone
5+
6+
# https://galaxy.ansible.com/list#/roles/6
7+
- src: bennojoy.redis
8+
9+
# https://galaxy.ansible.com/list#/roles/6
10+
- src: nickjj.nodejs

roles/hubot/meta/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
dependencies:
3+
- { role: bennojoy.redis}
4+
- { role: nickjj.nodejs, tags: node }

roles/hubot/tasks/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
# roles/hubot/tasks/main.yml
3+
- name: set system locale
4+
command: update-locale LC_ALL={{ lc_all }} LANG={{ lang }} LC_CTYPE={{ lc_ctype }} LC_COLLATE={{ lc_collate }}

0 commit comments

Comments
 (0)