Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/shell.py
blob: ba9dfc15392f4f1b76aae6b8c47450945a6f423d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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)