/etc/vmbuilder/firstscripts/firstbootrc.tmpl is in python-vm-builder 0.12.4+bzr494-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #!/bin/sh -e
#execute firstboot.sh only once
if [ ! -e /root/firstboot_done ]; then
if [ -e /root/firstboot.sh ]; then
/root/firstboot.sh
fi
touch /root/firstboot_done
fi
exit 0
|