ctdb-eventscripts: Update comment in 11.routing
authorMartin Schwenke <martin@meltin.net>
Wed, 15 Jan 2014 03:16:52 +0000 (14:16 +1100)
committerAmitay Isaacs <amitay@samba.org>
Mon, 5 May 2014 01:55:08 +0000 (03:55 +0200)
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
ctdb/config/events.d/11.routing

index ccc60e7c9b294524f3c42de22f41ac37df271f53..2fe560f73f1a14996470465056b45eb184503b60 100755 (executable)
@@ -1,15 +1,20 @@
 #!/bin/sh
-# script to add entries to the routing table after we have performed a
-# take ip event
-# (when we do a "releaseip" event and remove an ip address from an interface
-#  the kernel might automatically remove associated entries from
-#  the routing table. This is where we add them back)
+
+# Attempt to add a set of static routes.
+#
+# Do this in "ipreallocated" rather than just "startup" because some
+# of the routes might be missing because the corresponding interface
+# has not previously had any IPs assigned or IPs were previously
+# released and corresponding routes were dropped.
+#
+# Addition of some routes might fail, errors go to /dev/null.
+#
+# Routes to add are defined in $CTDB_BASE/static-routes. Syntax is:
 #
-# Routes to add are defined in /etc/ctdb/static-routes.
-# Syntax is :
 # IFACE NET/MASK GATEWAY
 #
-# Example
+# Example:
+#
 # bond1 10.3.3.0/24 10.0.0.1
 
 [ -n "$CTDB_BASE" ] || \