Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/shell.py
blob: abe06952497cb1bcaf3f9542479ea5888ec7ae18 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python

import os

from devbot import environ

def start():
    environ.setup()

    user_shell = os.environ.get("SHELL", "/bin/sh")
    os.execlp(user_shell, user_shell)