예제 #1
0
def really():

    """ Enable command execution. """

    setenv(really=True)
예제 #2
0
def notreally():

    """ Disable command execution. (default) """

    setenv(really=False)
예제 #3
0
""" reality is the main source of fabric-projects' default behaviour of not executing tasks without explicitly stating that action should 'really' be taken. """

##
#  Config value handling (or how to overdo getting one bool from the config into the env dict.)
##

from fabfile.ConfigHandling import get_bool

really = get_bool("fabfile", "really")

from fabfile.EyeCandy import setenv

if really:
    setenv(really=really)  # colored output
else:
    from fabric.api import env

    env["really"] = really


##
#  The tasks to control 'reallynes'
##

from fabfile.FabHacks import maintask


@maintask
def really():

    """ Enable command execution. """