This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # WAN Load-Balancing Symmetry workaround | |
| # steven.kath@vyatta.com 2012-09-22 | |
| # See https://bugzilla.vyatta.com/show_bug.cgi?id=6245 for background. | |
| if [[ $UID != 0 ]]; then | |
| echo -e "This script must be run with root permissions. Try:\n sudo $0" | |
| exit | |
| fi |