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

import os

from devbot import environ
from devbot import config

def start(rcfile):
    environ.setup()

    bash_path = "/bin/bash"
    os.execlp(bash_path, bash_path, "--rcfile", rcfile)