From: Marco Yuen Date: Fri, 24 Jun 2011 14:58:57 +0000 (-0400) Subject: GENICLOUD-26: Create a skeleton plugin file. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=0e9c14f7a5d394ee5793d2b0ffcc8b6f0697cf8a;p=nodemanager.git GENICLOUD-26: Create a skeleton plugin file. No implementation yet. --- diff --git a/plugins/euca_iptables.py b/plugins/euca_iptables.py new file mode 100644 index 0000000..959e859 --- /dev/null +++ b/plugins/euca_iptables.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python +# +# Create iptables rules to grant access to the node to a white list of IPs. +# +# Author: Marco Yuen + +def GetSlivers(data, config=None, plc=None): + pass + +if __name__ == '__main__': + pass +