blob: 3aefc9e287ee13fa79b0d3ad66674228837e2b5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/bash
# @License EPL-1.0 <http://spdx.org/licenses/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
##############################################################################
case "$(facter operatingsystem)" in
Ubuntu)
apt-get update
;;
*)
# Do nothing on other distros for now
;;
esac
IPADDR=$(facter ipaddress)
HOSTNAME=$(facter hostname)
FQDN=$(facter fqdn)
echo "${IPADDR} ${HOSTNAME} ${FQDN}" >> /etc/hosts
cat <<EOFHOSTS >> /etc/hosts
# workaround for download
199.19.213.77 download.automotivelinux.org
EOFHOSTS
#Increase limits
cat <<EOF > /etc/security/limits.d/jenkins.conf
jenkins soft nofile 64000
jenkins hard nofile 64000
jenkins soft nproc 30654
jenkins hard nproc 30654
EOF
cat <<EOSSH >> /etc/ssh/ssh_config
Host *
ServerAliveInterval 60
# we don't want to do SSH host key checking on spin-up systems
Host 10.30.72.*
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
Host vex-yul-agl-download.ci.codeaurora.org
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
EOSSH
cat <<EOKNOWN > /etc/ssh/ssh_known_hosts
[gerrit.automotivelinux.org]:29418,[198.145.29.87]:29418 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQC7mx+OxVdwr6s5M/JJn5DxxVu9n7dfIZrB+mS88m51oJmHCWDBGEncpUskrzAwI5uXYTeG4FamcxtrHumVL3oZ6F4m93DG486/LM/4ff8qbEjYNoYYqY004wW2kbg1ivZ/DWmIyAyw0JCOv+Ia39krT5Zv6LI68skimCE/6pRbsw==
vex-yul-agl-download.ci,10.30.72.8 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNaxEOWbShvqQWqS17c123Ct8tBLBVVOPTNYpZSmwd1UKVQi9cF0QMOU7Rc479bHwzuLscvmohpGh2kP0CmHvAo=
EOKNOWN
# vim: sw=2 ts=2 sts=2 et :
|