X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jenkins-scripts%2Fjenkins-init-script.sh;fp=jenkins-scripts%2Fjenkins-init-script.sh;h=0000000000000000000000000000000000000000;hb=2c7d6d15ef6ba8b28f084a16dc10abe8fa1c69a9;hp=3309b00ab11322912a3e9d0c924f74ef84091f44;hpb=e00b0170fd4a3899bf930aa8247f2d0479ddb636;p=releng%2Fbuilder.git diff --git a/jenkins-scripts/jenkins-init-script.sh b/jenkins-scripts/jenkins-init-script.sh deleted file mode 100755 index 3309b00ab..000000000 --- a/jenkins-scripts/jenkins-init-script.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -# SPDX-License-Identifier: EPL-1.0 -############################################################################## -# Copyright (c) 2016 The Linux Foundation and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/epl-v10.html -############################################################################## - -cd /builder/jenkins-scripts || exit 1 -chmod +x -- *.sh -./system_type.sh - -# shellcheck disable=SC1091 -source /tmp/system_type.sh -./basic_settings.sh -"./${SYSTEM_TYPE}.sh" - -# Create the jenkins user last so that hopefully we don't have to deal with -# guard files -./create_jenkins_user.sh - -## add local environment changes post scripts -./jenkins-init-script-local-env.sh - -# Create a swap file -dd if=/dev/zero of=/swap count=1024 bs=1MiB -chmod 600 /swap -mkswap /swap -swapon /swap