blob: 5e19bca955bef6e407a3a0b3f4b354769b45ad73 [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"
Vladimir Khlyunevbe0803b2022-04-18 15:58:15 +04008
9test -d "${JENKINS_HOME}/plugins" || mkdir -p "${JENKINS_HOME}/plugins"
10
Vladimir Khlyunevcb024712022-02-28 19:50:43 +040011if [[ ! -f "${watchfile}" ]] ; then
12 cp /opt/plugins_files_offline/*.jpi "${JENKINS_HOME}/plugins"
13 touch "${watchfile}"
14fi