Merge "Create autorelease GT for site patches"
[releng/builder.git] / jenkins-scripts / mininet.sh
1 #!/bin/bash
2
3 # make sure we don't require tty for sudo operations
4 cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
5 Defaults:jenkins !requiretty
6 jenkins     ALL = NOPASSWD: ALL
7 EOF
8
9 # for whatever reason netopeer & CPqD aren't installed (they weren't in
10 # one of the yum repos we were hooked up to when the base image was
11 # built, they are now. Make sure they're install
12 yum install -q -y netopeer-server-sl CPqD-ofsoftswitch13
13
14 # netaddr and ipaddress libraries can be useful on this system as
15 # some tests are starting to push pyhon scripts/tools to this VM
16 # during CI tests
17 yum install -q -y python-{ipaddr,iptools,netaddr}
18
19 #For executing the CSIT test cases for VTN Coordinator
20 yum install -q -y uuid libxslt libcurl unixODBC json-c
21 chown jenkins /usr/local/vtn
22
23
24 # the vagrant configuration for netopeer doesn't configure SSH correctly
25 # as it uses and here document via echo and not cat fix that
26 cat << EOSSH >> /etc/ssh/sshd_config
27
28 # Added for netconf / netopeer testing
29 Port 22
30 Port 830
31 Subsystem netconf /usr/bin/netopeer-server-sl
32 EOSSH
33
34 # Configuring sshd to accept root login with password
35 sed -ie 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
36 sed -ie 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config
37 chattr +i /etc/ssh/sshd_config
38
39 # sshd has to get a restart because of the above
40 service sshd restart
41
42 # found out while doing testing to fix netopeer that the selinux perms
43 # aren't set correctly (thanks Rackspace for having an EL6 image that
44 # didn't have selinux on at first!) fix it so that the password can be
45 # set
46 /sbin/restorecon -R /etc
47
48 # According to Luis in RT7956 the controller SSH capabilities require
49 # that for NETCONF it uses a password (how broken!) So we're going to
50 # force a password onto the jenkins user
51 echo 'jenkins' | passwd -f --stdin jenkins
52
53 # netopeer doesn't work correctly for non-root users from what I'm
54 # seeing (at least for the initial connection). Let's allow the tests to
55 # get in as the root user since jenkins already has full sudo
56 echo 'root' | passwd -f --stdin root
57
58 # make sure the firewall is stopped
59 /bin/bash disable_firewall.sh
60
61 # vim: sw=2 ts=2 sts=2 et :