Add bff stage release job to ci-management
[ci-management.git] / jenkins-scripts / basic_settings.sh
1 #!/bin/bash
2 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
3 ##############################################################################
4 # Copyright (c) 2016 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11
12 case "$(facter operatingsystem)" in
13   Ubuntu)
14     apt-get update
15     ;;
16   *)
17     # Do nothing on other distros for now
18     ;;
19 esac
20
21 IPADDR=$(facter ipaddress)
22 HOSTNAME=$(facter hostname)
23 FQDN=$(facter fqdn)
24
25 echo "${IPADDR} ${HOSTNAME} ${FQDN}" >> /etc/hosts
26
27 #Increase limits
28 cat <<EOF > /etc/security/limits.d/jenkins.conf
29 jenkins         soft    nofile          16000
30 jenkins         hard    nofile          16000
31 EOF
32
33 cat <<EOSSH >> /etc/ssh/ssh_config
34 Host *
35   ServerAliveInterval 60
36
37 # we don't want to do SSH host key checking on spin-up systems
38 Host 10.30.104.*
39   StrictHostKeyChecking no
40   UserKnownHostsFile /dev/null
41 EOSSH
42
43 cat <<EOKNOWN >  /etc/ssh/ssh_known_hosts
44 [gerrit.openecomp.org]:29418 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyAKv0UzEhpGKP/rW+yHpngl32Ppr5Uy42coz/sYZYxbtpI+9yaMqfoBb06ktmt6kV7OCT/Sc0OpyWmpcR0d7KZHxx/LE/nm7Gi+xkNHhb9G+Hn6DagP4V+LS6x1YlUt2InLCb8g07+/n6rfxqCI6emIJYu9aTpDhaARb+mMX1xzJuoa4wp59Yr1mkKK8lXHKGnPCemyl9a0vSRY58b7ZWG/N8giNvqYeptslIF1E/MEI5AP6nx7EupiVulAUdboAnDSD0urt9zdE8KRjboghB7PHguil6/OZhbqOb/uEt/rGCHn+02pig1K/vjFvCqNErNgS6EKj0IkH+cU/vjV6j
45 EOKNOWN
46
47 # vim: sw=2 ts=2 sts=2 et :