diff options
author | pi <pi@FreeBSD.org> | 2017-12-07 14:30:41 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 06:05:12 +0800 |
commit | 71d72ae6f8340895c3e4c0c278449a9cbc699af2 (patch) | |
tree | 356ace3926fb3e2c86706556a2ba953fd942904a | |
parent | 3fbaec33325d18631619683f4e22662b3db95b36 (diff) | |
download | freebsd-ports-gnome-71d72ae6f8340895c3e4c0c278449a9cbc699af2.tar.gz freebsd-ports-gnome-71d72ae6f8340895c3e4c0c278449a9cbc699af2.tar.zst freebsd-ports-gnome-71d72ae6f8340895c3e4c0c278449a9cbc699af2.zip |
net-mgmt/arpwatch: fix url to download OUI from in pkg-message
- See
https://github.com/freebsd/freebsd-ports/pull/74
Submitted by: https://github.com/hachiman8
-rw-r--r-- | net-mgmt/arpwatch/files/pkg-message.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-mgmt/arpwatch/files/pkg-message.in b/net-mgmt/arpwatch/files/pkg-message.in index 893962b88366..66fd592338ad 100644 --- a/net-mgmt/arpwatch/files/pkg-message.in +++ b/net-mgmt/arpwatch/files/pkg-message.in @@ -3,7 +3,7 @@ You can update the ethercodes.dat file executing the following steps cd %%PREFIX%%/arpwatch -fetch -o- http://standards.ieee.org/regauth/oui/oui.txt | cut -b 3- > oui.txt +fetch -o- http://standards-oui.ieee.org//oui.txt | tr -d "\15" > oui.txt ./massagevendor oui.txt > ethercodes.dat rm oui.txt |