vitaliel / shelper

Ruby jabber agent to help system administrators. Configure your servers from your favorite IM.

This URL has Read+Write access

vitaliel (author)
Tue Jan 27 10:32:29 -0800 2009
commit  cff000d4016db114b25300b93d99f6466029a80b
tree    fca0fc532ecc5ef73bc31cc05c96814e21bb3ac6
parent  69ee63ac43fcb1b4586f2d327b49561ccee70821
shelper / INSTALL
100644 28 lines (22 sloc) 0.736 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
= Testing installation
 
* Install a jabber server: ejabberd or other software
* apt-get install rubygems
* gem install xmpp4r
* Copy shelper.yml-example to shelper.yml and set parameters
* Run ./bin/shelper-agent
* Configure server from your favorite IM
* Cook plugins for your needs
* Share them with the community
 
= Use Debian package
* add to your /etc/apt/source.list
  deb http://apt.assembla.com/debian/ sid main
* Import my gpg key
  gpg_key=5F527DCE
  asc_file=/tmp/vitaliel.asc
  gpg --keyserver wwwkeys.eu.pgp.net --recv-keys $gpg_key
  gpg -a --output $asc_file --export $gpg_key
 
  if [ $? == 0 ]; then
    apt-key add $asc_file && apt-get update && echo Ok
  fi
* apt-get install shelper
 
= Build Debian package yourself