diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-01-30 12:59:38 -0800 |
---|---|---|
committer | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-01-30 13:20:32 -0800 |
commit | ebc710af742601214491c5b2b9a4f6847d235d6c (patch) | |
tree | 49e8acc7c5b170d186ac65d88debe94a4d935b16 /packer/provision/robot.sh | |
parent | dcd560890f549f999e0ebe437dcc180bbc628d0b (diff) |
Initial ci-management upload
* Configure initial jobs and validate Jenkins environment
* Do not hook up packer build jobs at this time
Change-Id: I1818e8680d215318410f6beff5af054db03e7fa1
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
Diffstat (limited to 'packer/provision/robot.sh')
-rw-r--r-- | packer/provision/robot.sh | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/packer/provision/robot.sh b/packer/provision/robot.sh new file mode 100644 index 000000000..bac724a2e --- /dev/null +++ b/packer/provision/robot.sh @@ -0,0 +1,65 @@ +#!/bin/bash + +# vim: ts=4 sw=4 sts=4 et tw=72 : + +rh_systems() { + # Assumes that python is already installed by basebuild + + # Install dependencies for robotframework and robotframework-sshlibrary + yum install -y -q yum-utils unzip sshuttle nc libffi-devel openssl-devel + + # Install docker + yum install -y docker supervisor bridge-utils + systemctl enable docker + + # configure docker networking so that it does not conflict with LF + # internal networks + cat <<EOL > /etc/sysconfig/docker-network +# /etc/sysconfig/docker-network +DOCKER_NETWORK_OPTIONS='--bip=10.250.0.254/24' +EOL + # configure docker daemon to listen on port 5555 enabling remote + # managment + sed -i -e "s#='--selinux-enabled'#='--selinux-enabled -H unix:///var/run/docker.sock -H tcp://0.0.0.0:5555'#g" /etc/sysconfig/docker + + # docker group doesn't get created by default for some reason + groupadd docker + + # Actual installation of robot is done from an integration JJB script +} + +ubuntu_systems() { + # Assumes that python is already installed by basebuild + + # Install dependencies for robotframework and robotframework-sshlibrary + apt install -y unzip sshuttle netcat libffi-dev libssl-dev + + # Install docker + apt install -y docker.io + + # Actual installation of robot is done from an integration JJB script +} + +all_systems() { + echo 'No common distribution configuration to perform' +} + +echo "---> Detecting OS" +ORIGIN=$(facter operatingsystem | tr '[:upper:]' '[:lower:]') + +case "${ORIGIN}" in + fedora|centos|redhat) + echo "---> RH type system detected" + rh_systems + ;; + ubuntu) + echo "---> Ubuntu system detected" + ubuntu_systems + ;; + *) + echo "---> Unknown operating system" + ;; +esac + +# execute steps for all systems +all_systems |