summaryrefslogtreecommitdiff
path: root/test/shell/system_id.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/shell/system_id.sh')
-rw-r--r--test/shell/system_id.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/shell/system_id.sh b/test/shell/system_id.sh
index 8814d5497..8b5638af3 100644
--- a/test/shell/system_id.sh
+++ b/test/shell/system_id.sh
@@ -50,6 +50,17 @@ check vg_field $vg1 systemid "$SID"
vgremove $vg1
fi
+## appmachineid
+lvm version > lvmver
+if grep app-machineid lvmver; then
+aux lvmconf "global/system_id_source = appmachineid"
+lvm systemid | awk '{ print $3 }' > sid_lvm
+vgcreate $vg1 "$dev1"
+vgs -o systemid --noheadings $vg1 | awk '{print $1}' > sid_vg
+diff sid_lvm sid_vg
+vgremove $vg1
+fi
+
## uname
SID1=$(uname -n)