Beispiel #1
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
    linux_bot - startup script for the XMPP bot to control a Linux box
    Copyright (C) 2012 Bjoern Stierand
"""

from bots.LinuxBot import LinuxBot
from framework.BotRunner import BotRunner

# create LinuxBot instance and run it
linuxBot = BotRunner(LinuxBot)
linuxBot.run()
Beispiel #2
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
    BackupBot - an XMPP bot to control the system backup performed by duplicity
    Copyright (C) 2012 Bjoern Stierand
"""

from bots.BackupBot import BackupBot
from framework.BotRunner import BotRunner

# create LinuxBot instance and run it
backupBot = BotRunner(BackupBot)
backupBot.run()
Beispiel #3
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
    git_bot - startup script for the XMPP bot to control the git infrastructure
    Copyright (C) 2012 Bjoern Stierand
"""

from bots.GitBot import GitBot
from framework.BotRunner import BotRunner

# set up BotRunner and startup the bot
gitBot = BotRunner(GitBot)
gitBot.run()