diff options
author | Christian Breunig <christian@poessinger.com> | 2023-09-04 20:25:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 20:25:45 +0200 |
commit | 11c89483e71d1fdacc1542c53f15c2a4556e52bd (patch) | |
tree | b4ee272c185ee452b0378619ca736020fe18fdb7 | |
parent | 0aa99fb9ae126f9a0d9bb3e68eab387adc587286 (diff) | |
parent | 8c24d0ac3e5c0086ae2e241c8734f7afcd4c52f1 (diff) | |
download | vyatta-op-11c89483e71d1fdacc1542c53f15c2a4556e52bd.tar.gz vyatta-op-11c89483e71d1fdacc1542c53f15c2a4556e52bd.zip |
Merge pull request #68 from dmbaturin/T671-show-dmi
T671: remove the show DMI script
-rwxr-xr-x | scripts/vyatta-show-dmi | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/vyatta-show-dmi b/scripts/vyatta-show-dmi deleted file mode 100755 index 38233e7..0000000 --- a/scripts/vyatta-show-dmi +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -if [ ! -d /sys/class/dmi ]; then - echo "DMI information not available" - exit 1 -fi - -for var in /sys/class/dmi/id/* -do - tag=$(basename $var) - if [ -f $var -a -r $var -a $tag != uevent -a $tag != modalias ]; then - echo -n "$tag: " - cat $var - fi -done |