This file is indexed.

/etc/xen/scripts/vtpm is in xen-utils-common 4.1.4-3+deb7u9.

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
21
22
#!/bin/bash

dir=$(dirname "$0")
. "$dir/vtpm-hotplug-common.sh"

vtpm_fatal_error=0

case "$command" in
  add)
    vtpm_create_instance
  ;;
  remove)
    vtpm_remove_instance
  ;;
esac

if [ $vtpm_fatal_error -eq 0 ]; then
	log debug "Successful vTPM operation '$command'."
	success
else
	fatal "Error while executing vTPM operation '$command'."
fi