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
#!/usr/bin/env python | |
########################################################################## | |
# | |
# Copyright 2009 Zenoss, Inc. All Rights Reserved. | |
# | |
########################################################################## | |
__doc__ = """zenfixit | |
Apply common remedies for problems, and look for other issues. |
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
## This is an example of executing code when your zenpack gets installed (or removed) | |
## This __init__.py file should be located at ZenPacks.namespace.Name/ZenPacks/namespace/Name/__init__.py | |
## This code should be carefully added to your zenpack so as not to accidently overwrite key methods ( | |
''' | |
Here begins the non default code | |
''' | |
# Import all the things. |
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
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Remove zsh warning on a mac | |
export BASH_SILENCE_DEPRECATION_WARNING=1 |