Ubuntu Pastebin

Paste from a at Mon, 18 May 2015 14:28:42 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
description "kubuntu bot"
author "apachelogger"

start on (filesystem and net-device-up IFACE!=lo)
stop on runlevel [!2345]

setuid apachelogger
setgid apachelogger

chdir /home/apachelogger/rbot
env HOME=/home/apachelogger

respawn

script
    [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" 
    exec ruby ./launch_here.rb 2>&1 | tee $HOME/log
end script
Download as text