diff options
author | Ole Mathias Heggem <olemathias.aa.heggem@gmail.com> | 2023-01-21 19:07:38 +0100 |
---|---|---|
committer | Ole Mathias Heggem <olemathias.aa.heggem@gmail.com> | 2023-01-21 19:07:38 +0100 |
commit | 709c78569b26677624e60588fa1166dc659ac93c (patch) | |
tree | 2bd5555af31b637d03693b8563fb24b41bf1f22b /tools/get_mibs.sh | |
parent | f5da0d943401e527f5162e9c6344deb65b19b045 (diff) |
chore: cleanup repo
Diffstat (limited to 'tools/get_mibs.sh')
-rwxr-xr-x | tools/get_mibs.sh | 15 |
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} |