aboutsummaryrefslogtreecommitdiffstats
path: root/tools/get_mibs.sh
diff options
context:
space:
mode:
authorOle Mathias Heggem <olemathias.aa.heggem@gmail.com>2023-01-21 19:07:38 +0100
committerOle Mathias Heggem <olemathias.aa.heggem@gmail.com>2023-01-21 19:07:38 +0100
commit709c78569b26677624e60588fa1166dc659ac93c (patch)
tree2bd5555af31b637d03693b8563fb24b41bf1f22b /tools/get_mibs.sh
parentf5da0d943401e527f5162e9c6344deb65b19b045 (diff)
chore: cleanup repo
Diffstat (limited to 'tools/get_mibs.sh')
-rwxr-xr-xtools/get_mibs.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/get_mibs.sh b/tools/get_mibs.sh
deleted file mode 100755
index 7c8cc52..0000000
--- a/tools/get_mibs.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-ORIGPWD=$PWD
-TMP=$(mktemp -d)
-set -x
-set -e
-cd $TMP
-wget ftp://ftp.cisco.com/pub/mibs/v2/v2.tar.gz
-tar xvzf v2.tar.gz --strip-components=2
-mkdir -p mibs
-
-cp v2/* mibs/
-mv mibs ${ORIGPWD}/
-cd ${ORIGPWD}
-rm -rf ${TMP}