Enabling root login with password in mininet VM
[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 # the vagrant configuration for netopeer doesn't configure SSH correctly
15 # as it uses and here document via echo and not cat fix that
16 cat << EOSSH >> /etc/ssh/sshd_config
17
18 # Added for netconf / netopeer testing
19 Port 22
20 Port 830
21 Subsystem netconf /usr/bin/netopeer-server-sl
22 EOSSH
23
24 # Configuring sshd to accept root login with password
25 sed -ie 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
26 sed -ie 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config
27 chattr +i /etc/ssh/sshd_config
28
29 # sshd has to get a restart because of the above
30 service sshd restart
31
32 # found out while doing testing to fix netopeer that the selinux perms
33 # aren't set correctly (thanks Rackspace for having an EL6 image that
34 # didn't have selinux on at first!) fix it so that the password can be
35 # set
36 /sbin/restorecon -R /etc
37
38 # According to Luis in RT7956 the controller SSH capabilities require
39 # that for NETCONF it uses a password (how broken!) So we're going to
40 # force a password onto the jenkins user
41 echo 'jenkins' | passwd -f --stdin jenkins
42
43 # netopeer doesn't work correctly for non-root users from what I'm
44 # seeing (at least for the initial connection). Let's allow the tests to
45 # get in as the root user since jenkins already has full sudo
46 echo 'root' | passwd -f --stdin root
47
48 # make sure the firewall is stopped
49 service iptables stop
50
51 # vim: sw=2 ts=2 sts=2 et :