Пример #1
0
 def __init__(self, context):
     self.context = context
     if self.context.debug:
         print("init command refresh")
     try:
         value = Default.get_refresh()
     except:
         Default.set_refresh("off")
Пример #2
0
    def do_refresh(self, args, arguments):
        """
        ::

            Usage:
                refresh on
                refresh off
                refresh list

                switches on and off the refresh for clouds

        """
        if arguments["on"]:
            Default.set_refresh("on")
            Console.ok("Switch debug on")
        elif arguments["off"]:
            Default.set_refresh("off")
            Console.ok("Switch debug off")
        elif arguments["list"]:
            refresh = Default.get_refresh()
            Console.ok("Automatic cloud refresh is switched {}".format(refresh))

        return ""