Skip to content

Commit

Permalink
Pushed by gbuild.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Middleton committed Sep 11, 2017
1 parent 21da25a commit 8280ca4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
5 changes: 0 additions & 5 deletions gaze-control/gazectl-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ if ! hash docker &>/dev/null; then
exit 1
fi

if [ ! -S ${SOCKET} ]; then
echo "[GAZE] The Docker daemon socket (${SOCKET}) could not be found. Please ensure it's running then run \"gaze bootstrap\" again."
exit 1
fi

# Always ensure we're running the latest push.
if [ "$UPDATE" = true ] ; then
docker pull "${NAMESPACE}/${IMAGE}:${TAG}"
Expand Down
2 changes: 1 addition & 1 deletion gaze-control/gazectl/gazectl.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(self, args, config):
sys.exit(1)

def __call__(self):
self.helpers.print_ascii_banner()
print(self.helpers.print_ascii_banner())

self.log("Welcome to GAZE! Let's prepare your system...", 'info')

Expand Down
10 changes: 6 additions & 4 deletions gaze-control/gazectl/gazelib/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,23 @@ def __init__(self):

@staticmethod
def print_ascii_banner():
print(colored(r'''
banner = colored(r'''
__ .-.
.-"` .`'. /\\|
_(\-/)_" , . ,\ /\\\/
{(=o^O=)} . ./, |/\\\/
`-.(Y).-` , | , |\.-`
/~/,_/~~~\,__.-`
////~ //~\\
==`==` ==` ==`''', 'magenta'))
==`==` ==` ==`''', 'magenta')

print(colored(r''' ██████╗ █████╗ ███████╗ ███████╗
banner += colored(r''' ██████╗ █████╗ ███████╗ ███████╗
██╔════╝ ██╔══██╗ ╚══███╔╝ ██╔════╝
██║ ███╗ ███████║ ███╔╝ █████╗
██║ ██║ ██╔══██║ ███╔╝ ██╔══╝
╚██████╔╝ ██║ ██║ ███████╗ ███████╗
╚═════╝ ╚═╝ ╚═╝ ╚══════╝ ╚══════╝
Turnkey Open Media Center
''', 'blue'))
''', 'blue')

return banner

0 comments on commit 8280ca4

Please sign in to comment.