Example #1
0
 def __init__(self):
     CementPlugin.__init__(self,
         label = 'bowser',
         version = VERSION,
         description = 'Core plugin for bowser',
         required_abi = REQUIRED_CEMENT_ABI,
         version_banner = BANNER,
         )
Example #2
0
 def __init__(self):
     CementPlugin.__init__(self,
         label = 'healthcheck',
         version = VERSION,
         description = 'Healthcheck plugin for Bowser',
         required_abi = REQUIRED_CEMENT_ABI,
         version_banner=BANNER
         )
Example #3
0
 def __init__(self):
     CementPlugin.__init__(self,
         label = 'mirror',
         version = VERSION,
         description = 'Mirror plugin for redflare',
         required_abi = REQUIRED_CEMENT_ABI,
         version_banner = BANNER,
         config = {'merge_global_options' : True}
         )
Example #4
0
 def __init__(self):
     CementPlugin.__init__(self,
         label = 'example',
         version = VERSION,
         description = 'Example plugin for redflare',
         required_abi = REQUIRED_CEMENT_ABI,
         version_banner=BANNER,
         )
     
     # plugin configurations can be setup this way
     self.config['example_option'] = False
     
     # plugin cli options can be setup this way.  Generally, cli options
     # are used to set config options... so if you probably want to
     # add your options to both.
     self.options.add_option('-E', '--example', action='store',
         dest='example_option', default=None, help='Example Plugin Option'
         )