Skip to content

Commit

Permalink
Add ansible role for hubot
Browse files Browse the repository at this point in the history
- [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
  • Loading branch information
Saurabh Kumar committed Jul 18, 2015
1 parent 2d348dc commit fa3731e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]
### Added
- Ansible role for setting up hubot (#8)
- Ansible galaxy integration (#9)
- Add .travis.yml for running CI test
- Add getting up and running documentation
Expand Down
1 change: 1 addition & 0 deletions playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@

roles:
- common
- hubot
6 changes: 6 additions & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@

# https://github.com/yatesr/ansible-timezone
- src: yatesr.timezone

# https://galaxy.ansible.com/list#/roles/6
- src: bennojoy.redis

# https://galaxy.ansible.com/list#/roles/6
- src: nickjj.nodejs
4 changes: 4 additions & 0 deletions roles/hubot/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
dependencies:
- { role: bennojoy.redis}
- { role: nickjj.nodejs, tags: node }
4 changes: 4 additions & 0 deletions roles/hubot/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
# roles/hubot/tasks/main.yml
- name: set system locale
command: update-locale LC_ALL={{ lc_all }} LANG={{ lang }} LC_CTYPE={{ lc_ctype }} LC_COLLATE={{ lc_collate }}

0 comments on commit fa3731e

Please sign in to comment.