update-iana.sh 356 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. IANA_VERSION=2.30
  3. wget http://sethwklein.net/iana-etc-$IANA_VERSION.tar.bz2
  4. tar xvf iana-etc-$IANA_VERSION.tar.bz2
  5. pushd iana-etc-$IANA_VERSION
  6. sed -i 's:file=protocol-numbers:file=protocol-numbers/protocol-numbers.txt:' Makefile
  7. make get
  8. LC_ALL=C make
  9. make test
  10. cp {services,protocols} ../
  11. popd
  12. # Cleanup
  13. rm -rf iana-etc-$IANA_VERSION