aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/initscripts/files/functions
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/initscripts/files/functions')
-rw-r--r--recipes/initscripts/files/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/initscripts/files/functions b/recipes/initscripts/files/functions
index 51c1f13261..b9dca1f96b 100644
--- a/recipes/initscripts/files/functions
+++ b/recipes/initscripts/files/functions
@@ -6,7 +6,7 @@
machine_id() { # return the machine ID
id=`awk 'BEGIN { FS=": " } /Hardware/ { gsub(" ", "_", $2); print tolower($2) } ' </proc/cpuinfo`
- if [ -n "$id" ]; then
+ if [ -z "$id" ]; then
id=`awk 'BEGIN { FS=": " } /platform/ { gsub(" ", "_", $2); print tolower($2) } ' </proc/cpuinfo`
fi
echo -n "$id"