/usr/sbin/dtc-xen-volgroup is in dtc-xen 0.5.17-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh
set -e
PATH=/sbin:/bin:/usr/sbin:/usr/bin
[ -f /etc/dtc-xen/soap.conf ] && . /etc/dtc-xen/soap.conf
[ -f /etc/dtc-xen/dtc-xen.conf ] && . /etc/dtc-xen/dtc-xen.conf
if [ "$soap_server_lvmname" != "" ] ; then
echo "$soap_server_lvmname"
exit 0
fi
if [ "$provisioning_volgroup" != "" ] ; then
echo "$provisioning_volgroup"
exit 0
fi
vgdisplay -c -A | tail -n 1 | cut -d":" -f1 | awk '{print $1}'
|