Commit e6eecaed by lapentab Committed by Jay Zoldak

Update ansible scripts

parent b3f42957
...@@ -112,6 +112,9 @@ ...@@ -112,6 +112,9 @@
- name: Install build-essential for gcli - name: Install build-essential for gcli
apt: pkg=build-essential state=present apt: pkg=build-essential state=present
- name: Install pkg-config
apt: pkg=pkg-config
- name: Git clone ruby-build - name: Git clone ruby-build
shell: git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build shell: git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
...@@ -119,13 +122,17 @@ ...@@ -119,13 +122,17 @@
shell: sh install.sh chdir=~/.rbenv/plugins/ruby-build/ shell: sh install.sh chdir=~/.rbenv/plugins/ruby-build/
- name: Install ruby version - name: Install ruby version
shell: rbenv install 1.9.3-p362 shell: rbenv install 1.9.3-p374
- name: Set rbenv version - name: Set rbenv version
shell: rbenv global 1.9.3-p362 shell: rbenv global 1.9.3-p374
- name: Install gcli - name: Install gcli
shell: rbenv exec gem install github_cli shell: rbenv exec gem install github_cli
- name: Install rake
apt: pkg=rake
- name: TEMPORARILY DISABLE gcli - name: TEMPORARILY DISABLE gcli
shell: echo "#!/bin/bash\necho gcli" > /usr/local/bin/gcli shell: echo "#!/bin/bash\necho gcli" > /usr/local/bin/gcli
--- ---
- name: Install Jenkins - name: Install Jenkins
apt: pkg=jenkins shell: wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
- name: Install Jenkins 2
shell: sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list'
- name: Install Jenkins 3
shell: apt-get update
- name: install jenkins 4
apt: pkg=jenkins state=present
- name: Make plugins directory
shell: mkdir -p {{ jenkins_home }}/plugins
- name: Mod plugins directory permissions
shell: chmod -R 777 {{ jenkins_home }}/plugins
- name: Install Jenkins plugins - name: Install Jenkins plugins
get_url: url=http://updates.jenkins-ci.org/latest/${item} get_url: url=http://updates.jenkins-ci.org/latest/${item}
dest={{ jenkins_home }}/plugins dest={{ jenkins_home }}/plugins/${item}
with_items: with_items:
- ant.hpi - ant.hpi
- backup.hpi - backup.hpi
...@@ -15,15 +30,15 @@ ...@@ -15,15 +30,15 @@
- cvs.hpi - cvs.hpi
- dashboard-view.hpi - dashboard-view.hpi
- external-monitor-job.hpi - external-monitor-job.hpi
- ghprb.hpi
- git.hpi - git.hpi
- github.hpi
- git-client.hpi - git-client.hpi
- github-api.hpi - github-api.hpi
- github-oauth.hpi - github-oauth.hpi
- git-notes.hpi - git-notes.hpi
- htmlpublisher.hpi - htmlpublisher.hpi
- javadoc.hpi - javadoc.hpi
- jenkinswalldisplay.hpi
- jenkinswalldisplay-pom.hpi
- jobConfigHistory.hpi - jobConfigHistory.hpi
- ldap.hpi - ldap.hpi
- mailer.hpi - mailer.hpi
...@@ -42,10 +57,46 @@ ...@@ -42,10 +57,46 @@
- ssh-slaves.hpi - ssh-slaves.hpi
- subversion.hpi - subversion.hpi
- thinBackup.hpi - thinBackup.hpi
- timestamper.hpi # - timestamper.hpi
- tmpcleaner.hpi - tmpcleaner.hpi
- token-macro.hpi - token-macro.hpi
- translation.hpi - translation.hpi
- violations.hpi - violations.hpi
notify: notify:
- restart Jenkins - restart Jenkins
- name: Mod plugins directory permissions (Again)
shell: chmod -R 777 {{ jenkins_home }}/plugins
- name: Restart Jenkins to allow for new plugins
shell: service jenkins restart
- name: Make backup directory
shell: mkdir {{ jenkins_home }}/backup
- name: Make backup directory
shell: chmod -R 777 {{ jenkins_home }}/backup
- name: Chmod mnt
shell: chmod -R 777 /mnt/
- name: Chmod /usr/local
shell: chmod -R 777 /usr/local/
- name: chmod tmp
shell: chmod -R 777 /tmp/
- name: Symbolic link site packages
shell: ln -s /usr/local/lib/python2.7/site-packages/ /usr/local/lib/python2.7/dist-packages/
- name: install numpy
shell: pip install numpy==1.6.2
- name: install scipy
shell: pip install scipy==0.11.0
# - name: cmod lib directory for restore **Undo this after restore**
# shell: chmod -R 777 /var/lib
# - name: Git clone
# action: git repo=https://github.com/lapentab/jenkinsconfig.git dest={{jenkins_home}}/backup
...@@ -3,4 +3,4 @@ start on (net-device-up ...@@ -3,4 +3,4 @@ start on (net-device-up
and local-filesystems and local-filesystems
and runlevel [2345]) and runlevel [2345])
stop on runlevel [016] stop on runlevel [016]
exec /usr/bin/Xvfb :99 -screen 0 1024x768x24 exec /usr/bin/Xvfb :1 -screen 0 1024x768x24
\ No newline at end of file
# Set the display to the virtual frame buffer (Xvfb) # Set the display to the virtual frame buffer (Xvfb)
export DISPLAY=:99 export DISPLAY=:1
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment