blob: a6b2338471917ae18089d2e9747cfdb7432098bd [file] [log] [blame]
Vladimir Khlyunevcb024712022-02-28 19:50:43 +04001#!/bin/bash
2
3# Copy plugins .jpi files from /opt/plugins_files_offline to $JENKINS_HOME/plugins
4# at first boot after upgrading docker. This script should be executed before starting up jenkins.
5# The script will watch "$JENKINS_HOME/.plugins_for_X.XXX.X_installed" file existence.
6set -e
7watchfile="${JENKINS_HOME}/.plugins_for_2.263.4_installed"
8if [[ ! -f "${watchfile}" ]] ; then
9 cp /opt/plugins_files_offline/*.jpi "${JENKINS_HOME}/plugins"
10 touch "${watchfile}"
11fi