This file is indexed.

/usr/share/tripleo-image-elements/jenkins/install.d/11-jenkins-plugins 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
#!/bin/bash

set -e
set -o xtrace

source $(dirname $0)/defaults

if [ -n "${JENKINS_PLUGINS}" ];then
    for plugin in ${JENKINS_PLUGINS//,/ }; do
        wget -q http://updates.jenkins-ci.org/latest/${plugin}.hpi -O /var/lib/jenkins/plugins/${plugin}.hpi
    done
    chown jenkins:nogroup /var/lib/jenkins/plugins/*
fi