This file is indexed.

/usr/share/tripleo-image-elements/nova-ironic/install.d/81-nova-ironic-driver is in python-tripleo-image-elements 0.7.1-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
#!/bin/bash
set -eu
# Install Ironic and IronicClient in nova venv.
# TODO(NobodyCam): remove once Ironic Nova driver lands in Nova.
set +u
source $NOVA_VENV_DIR/bin/activate
set -u

pip install /opt/stack/ironic
pip install /opt/stack/python-ironicclient

set +u
deactivate
set -u