diff options
author | Gaurav Sinha <gaurav.sinha@vyatta.com> | 2012-04-17 11:03:10 -0700 |
---|---|---|
committer | Gaurav Sinha <gaurav.sinha@vyatta.com> | 2012-04-17 11:03:10 -0700 |
commit | cc7d0c96369980eeda4c01fca1035dca4636243a (patch) | |
tree | f1927f8d0f8a2631ff6b1190e3f1af13f1a50cb6 /templates-cfg/system/conntrack/modules/SQLnet | |
parent | 6c46c3a8616e5e59120b5b8bf8332dc543c2267f (diff) | |
download | vyatta-conntrack-cc7d0c96369980eeda4c01fca1035dca4636243a.tar.gz vyatta-conntrack-cc7d0c96369980eeda4c01fca1035dca4636243a.zip |
ensure single reload of conntrackd daemon
Diffstat (limited to 'templates-cfg/system/conntrack/modules/SQLnet')
-rw-r--r-- | templates-cfg/system/conntrack/modules/SQLnet/enable/node.def | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates-cfg/system/conntrack/modules/SQLnet/enable/node.def b/templates-cfg/system/conntrack/modules/SQLnet/enable/node.def index 1cbd130..630d728 100644 --- a/templates-cfg/system/conntrack/modules/SQLnet/enable/node.def +++ b/templates-cfg/system/conntrack/modules/SQLnet/enable/node.def @@ -1,3 +1,11 @@ help: enable SQLnet protocol helper create:expression: "touch /tmp/vyatta-conntrack-sync" + +end: if [ ${COMMIT_ACTION} = 'DELETE' ]; then + echo "sudo iptables -D VYATTA_CT_HELPER -t raw -p tcp --dport 1521 -j CT --helper sqlnet" + echo "sudo iptables -D VYATTA_CT_HELPER -t raw -p tcp --dport 1525 -j CT --helper sqlnet" + else + echo "sudo iptables -I VYATTA_CT_HELPER -t raw -p tcp --dport 1521 -j CT --helper sqlnet" + echo "sudo iptables -I VYATTA_CT_HELPER -t raw -p tcp --dport 1525 -j CT --helper sqlnet" + fi; |