From 89ee374a3faff53aa56bf6818f6ccd690fd88ede Mon Sep 17 00:00:00 2001 From: Jesse Becker Date: Wed, 29 May 2019 22:30:14 -0400 Subject: [PATCH] Add note about using multiple {Pre,Post}{Up,DOwn} hooks --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f1fff62..ee28b3c 100644 --- a/README.md +++ b/README.md @@ -685,6 +685,7 @@ MTU = 1500 #### `PreUp` Optionally run a command before the interface is brought up. +This option can be specified multiple times, with commands executed in the order they appear in the file. **Examples** @@ -694,6 +695,7 @@ Optionally run a command before the interface is brought up. #### `PostUp` Optionally run a command after the interface is brought up. +This option can appear multiple times, as with PreUP **Examples** @@ -718,6 +720,7 @@ Optionally run a command after the interface is brought up. #### `PreDown` Optionally run a command before the interface is brought down. +This option can appear multiple times, as with PreUP **Examples** @@ -731,6 +734,7 @@ Optionally run a command before the interface is brought down. #### `PostDown` Optionally run a command after the interface is brought down. +This option can appear multiple times, as with PreUP **Examples**