This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#### Thank you once again Jamie Bainbridge for helping me with the script. | |
#### Requirements: yum install -y "graphviz eog" ; copy script into file and then execute, e.g: ./scriptname.sh | |
#### I've noticed it doesn't work too well in the new Fedora, but tested with Rhel 7 | |
#set -x | |
echo "" > first.dot | |
InitPath=$(pwd) | |
EndPath="sos_commands/networking" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask.ext.irc import BotModule, CommandAborted | |
from exodus import login_required, db | |
auth = BotModule('Auth', __name__) | |
@auth.command('addhost') | |
def addhost(source, channel): | |
"""Show the URL to connect your host with your account. | |
This command shows you the URL to associate your hostname with an account. |