aboutsummaryrefslogtreecommitdiff
path: root/class
diff options
context:
space:
mode:
Diffstat (limited to 'class')
-rwxr-xr-xclass/10-base-classes16
1 files changed, 0 insertions, 16 deletions
diff --git a/class/10-base-classes b/class/10-base-classes
deleted file mode 100755
index eed0846..0000000
--- a/class/10-base-classes
+++ /dev/null
@@ -1,16 +0,0 @@
-#! /bin/bash
-
-# Echo architecture and OS name in uppercase. Do NOT remove these two lines.
-uname -s | tr '[:lower:]' '[:upper:]'
-[ -x "`which dpkg`" ] && dpkg --print-architecture | tr a-z A-Z
-
-# determin if we are a DHCP client or not
-# count the : chars in the argument of ip=
-n="${ip//[^:]}"
-if [[ $ip =~ ^(on|any|dhcp)$ ]]; then
- echo DHCPC
-elif [ ${#n} -lt 6 ]; then
- echo DHCPC
-fi
-
-exit 0