Merge lp:~1chb1n/ubuntu-openstack-ci/ubuntu-openstack-ci-trusty into lp:ubuntu-openstack-ci

Proposed by Ryan Beisner
Status: Merged
Merged at revision: 8
Proposed branch: lp:~1chb1n/ubuntu-openstack-ci/ubuntu-openstack-ci-trusty
Merge into: lp:ubuntu-openstack-ci
Diff against target: 5465 lines
To merge this branch: bzr merge lp:~1chb1n/ubuntu-openstack-ci/ubuntu-openstack-ci-trusty
Reviewer Review Type Date Requested Status
Ryan Beisner (community) Approve
Review via email: mp+237341@code.launchpad.net

Description of the change

* Move the bulk of the code out of jenkins jobs, into job script files.
* Adjust for re-deployment of OSCI environment on jenkins/trusty.
* Clean up and reorganize.

To post a comment you must log in.
Revision history for this message
Ryan Beisner (1chb1n) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'README'
2--- README 2014-10-02 15:34:09 +0000
3+++ README 2014-10-06 20:55:43 +0000
4@@ -49,7 +49,7 @@
5
6 Or use deployer without post-configuration:
7 cd deployment
8- juju-deployer -B -c 105-uosci-cs-precise.yaml
9+ juju-deployer -B -c 110-uosci-trusty.yaml
10
11
12 Directories:
13@@ -94,8 +94,5 @@
14 The post-deploy script (via scripts in bin/) takes care of proxy.xml and
15 plugin installation.
16
17- * NOTE(beisner): Currently, the bundle uses the precise cs: charms due to
18- slave charm issue. Bug #1272520: "Unable to relate to jenkins-slave..."
19-
20 * The deployed Jenkins version is likely out-dated. It is recommended to
21 upgrade jenkins via the war from trunk. The post-deploy script does that.
22
23=== renamed file 'deployment/deploy-files/bare-copy-jobs.sh' => 'admin/800-bare-copy-jobs.sh'
24--- deployment/deploy-files/bare-copy-jobs.sh 2014-10-02 15:18:00 +0000
25+++ admin/800-bare-copy-jobs.sh 2014-10-06 20:55:43 +0000
26@@ -1,12 +1,19 @@
27 #!/bin/bash -e
28 echo $0
29
30-# Peel out jobs scaffold and config.xml from existing jenkins environment
31-# Useful for backing up job configs without workspaces, history, artifacts, etc.
32-# To be run inside jenkins master.
33-
34+. $(dirname $0)/../env-common
35+
36+# Make tarball of jobs dirs and config.xml from jenkins master, pull it to
37+# local home. Tarball names are timestamped. Useful for backing up job
38+# configs without workspaces, history, artifacts, etc.
39+
40+loc_dir="${HOME}/tmp.jobs"
41+mkdir -p $loc_dir
42+tmp_file="$(mktemp)"
43+
44+cat > "$tmp_file" << "EOF"
45+d_str=$(date +'%H%M%S')
46 jobs_dir="/var/lib/jenkins/jobs"
47-d_str=$(date +'%H%M%S')
48 jobs_bare="${jobs_dir}-${d_str}"
49 tarball="jobs-${d_str}.tgz"
50 u_home="/home/ubuntu"
51@@ -26,4 +33,17 @@
52 sudo cp ${tarball} ${u_home}
53 sudo chown $u_own ${u_home}/${tarball}
54 echo "${u_home}/${tarball}"
55-
56+EOF
57+
58+sudo chmod 770 $tmp_file
59+
60+f_dst="${U_HOME}/bare-copy-jobs.sh"
61+f_src="$tmp_file"
62+
63+# Copy script into master and execute
64+juju scp $f_src ${MASTER}:${f_dst}
65+juju ssh ${MASTER} "sudo ${U_HOME}/bare-copy-jobs.sh"
66+juju scp ${MASTER}:jobs-*.tgz ${loc_dir}
67+
68+echo "Jobs files in ${loc_dir}:"
69+ls -alh ${loc_dir}
70
71=== added file 'admin/945-juju-gui-info.sh'
72--- admin/945-juju-gui-info.sh 1970-01-01 00:00:00 +0000
73+++ admin/945-juju-gui-info.sh 2014-10-06 20:55:43 +0000
74@@ -0,0 +1,20 @@
75+#!/bin/bash -e
76+echo $0
77+
78+# Get info about jenkins master, such as floating ip, etc.
79+
80+. $(dirname $0)/../env-common
81+
82+. ~/novarc
83+
84+# Get UUID of jenkins instance
85+unit_uuid=$(juju status juju-gui | grep instance-id | awk '{ print $2 }' |\
86+ egrep '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}')
87+if [ -z "$unit_uuid" ]; then
88+ echo "Couldn't get UUID for jenkins master instance."
89+ exit 1
90+fi
91+
92+echo "juju gui instance info:"
93+nova show ${unit_uuid}
94+
95
96=== modified file 'admin/990-restart-jenkins-master-service.sh'
97--- admin/990-restart-jenkins-master-service.sh 2014-10-02 15:18:00 +0000
98+++ admin/990-restart-jenkins-master-service.sh 2014-10-06 20:55:43 +0000
99@@ -6,4 +6,4 @@
100 . $(dirname $0)/../env-common
101
102 juju ssh ${MASTER} "sudo service jenkins restart &&\
103- sudo status jenkins"
104+ sudo service jenkins status"
105
106=== modified file 'admin/991-restart-jenkins-slaves-services.sh'
107--- admin/991-restart-jenkins-slaves-services.sh 2014-10-02 15:18:00 +0000
108+++ admin/991-restart-jenkins-slaves-services.sh 2014-10-06 20:55:43 +0000
109@@ -9,7 +9,7 @@
110 for unit in $units; do
111 echo "restarting jenkins-slave service on ${unit}!"
112 juju ssh $unit "sudo service jenkins-slave restart &&\
113- sudo status jenkins-slave"
114+ sudo service jenkins-slave status"
115 done
116
117
118
119=== modified file 'deploy.py'
120--- deploy.py 2014-10-02 15:18:00 +0000
121+++ deploy.py 2014-10-06 20:55:43 +0000
122@@ -12,6 +12,7 @@
123 from netaddr import IPNetwork
124 from neutronclient.neutron import client as ne_client
125 from novaclient import client as nv_client
126+from time import time
127 from common.osci_utils import (
128 f_contains_str,
129 floating_ip_is_available,
130@@ -91,7 +92,7 @@
131 for unit in range(0, js_qty):
132 envs.append("{}-{}{}".format(conf_env['env-name-base'],
133 conf_env['slave-abbrv'],
134- unit))
135+ str(unit).zfill(2)))
136 return envs
137
138
139@@ -352,12 +353,21 @@
140 '''
141
142 # Get config.xml from jenkins master
143+ time_stamp = str(time()).replace('.', '-')
144+ file_name = 'config.xml.{}'.format(time_stamp)
145+
146+ subprocess.check_call(['juju', 'ssh', 'osci/0',
147+ 'sudo cp /var/lib/jenkins/config.xml '
148+ '/home/ubuntu/{}'.format(file_name)])
149+ subprocess.check_call(['juju', 'ssh', 'osci/0',
150+ 'sudo chown ubuntu:ubuntu '
151+ '/home/ubuntu/{}'.format(file_name)])
152 juju_scp_cmd = 'juju scp {}:{} {}'.format('osci/0',
153- '/var/lib/jenkins/config.xml',
154- conf['out-dir'])
155+ '/home/ubuntu/{}'.format(file_name),
156+ conf['out-dir'])
157 subprocess.check_call(juju_scp_cmd.split())
158
159- loc_xml = '{}/config.xml'.format(conf['out-dir'])
160+ loc_xml = '{}/{}'.format(conf['out-dir'], file_name)
161 do_copy = False
162 _files = []
163
164@@ -396,7 +406,7 @@
165 # Add config.xml to the list to copy back to jenkins master
166 logging.info('do_copy True')
167 _files.append(
168- {'src-name': 'config.xml',
169+ {'src-name': file_name,
170 'dst-name': 'config.xml',
171 'src-dir': conf['out-dir'],
172 'tmp-dir': '/home/ubuntu',
173@@ -445,7 +455,8 @@
174 neutron = ne_client.Client('2.0', **creds[0])
175 nova = nv_client.Client('2', **creds[1])
176 jm_stat = yaml.load(subprocess.check_output(['juju', 'status', 'osci']))
177- jm_instance_id = jm_stat['machines']['1']['instance-id']
178+ jm_id = jm_stat['machines'].keys()[0]
179+ jm_instance_id = jm_stat['machines'][jm_id]['instance-id']
180 jm_instance = nova.servers.get(server=jm_instance_id)
181 jm_addresses = jm_instance.addresses[conf_net['default-network']]
182 ext_net_id = (neutron.list_networks(name=conf_net['ext-net'])
183
184=== modified file 'deployment/110-uosci-trusty.yaml'
185--- deployment/110-uosci-trusty.yaml 2014-10-02 15:18:00 +0000
186+++ deployment/110-uosci-trusty.yaml 2014-10-06 20:55:43 +0000
187@@ -6,10 +6,11 @@
188 series: trusty
189 services:
190 osci:
191- charm: "cs:precise/jenkins"
192+ branch: "lp:~1chb1n/charms/precise/jenkins/trusty-prep"
193 num_units: 1
194 options:
195 "remove-unlisted-plugins": "no"
196+ release: trunk
197 tools: git gcc make bzr iptraf htop nmap nload multitail wget
198 username: ubuntu
199 password: ubuntu
200@@ -18,12 +19,16 @@
201 "gui-y": -36
202 "osci-slave":
203 branch: "lp:~juju-qa/charms/trusty/jenkins-slave/trunk"
204- num_units: 1
205+ num_units: 12
206 options:
207 tools: git gcc make bzr iptraf htop nmap nload multitail wget
208+ labels: slave
209 annotations:
210 "gui-x": 599
211 "gui-y": 230
212+ "juju-gui":
213+ charm: "cs:trusty/juju-gui"
214+ num_units: 1
215 relations:
216 - - "osci:master"
217 - "osci-slave:slave"
218
219=== modified file 'deployment/bin/104-juju-openstack-packages.sh'
220--- deployment/bin/104-juju-openstack-packages.sh 2014-10-02 15:18:00 +0000
221+++ deployment/bin/104-juju-openstack-packages.sh 2014-10-06 20:55:43 +0000
222@@ -28,6 +28,11 @@
223 juju ssh $unit "sudo add-apt-repository ppa:juju/stable -y &&\
224 sudo add-apt-repository cloud-archive:icehouse -y &&\
225 sudo apt-get update -y"
226+ else
227+ echo "Unit is not precise."
228+ juju ssh $unit "sudo add-apt-repository ppa:juju/stable -y &&
229+ sudo apt-get update -y &&\
230+ sudo apt-get install python-flake8 -y"
231 fi
232
233 juju ssh $unit "sudo apt-get install git testrepository subunit python-nose python-lxml python-boto \
234
235=== modified file 'deployment/bin/110-set-plugin-proxy-serverstack.sh'
236--- deployment/bin/110-set-plugin-proxy-serverstack.sh 2014-10-02 15:18:00 +0000
237+++ deployment/bin/110-set-plugin-proxy-serverstack.sh 2014-10-06 20:55:43 +0000
238@@ -24,7 +24,7 @@
239 sudo chown jenkins:jenkins ${f_dst} &&\
240 stat ${f_dst} &&\
241 sudo service jenkins restart &&\
242- sudo status jenkins"
243+ sudo service jenkins status"
244 else
245 echo "file ${f_dst} already exists in ${MASTER}, skipping"
246 fi
247
248=== modified file 'deployment/bin/115-upgrade-jenkins-trunk.sh'
249--- deployment/bin/115-upgrade-jenkins-trunk.sh 2014-10-02 15:18:00 +0000
250+++ deployment/bin/115-upgrade-jenkins-trunk.sh 2014-10-06 20:55:43 +0000
251@@ -17,7 +17,7 @@
252 grep 'X-Jenkins:' || echo 'unknown'")
253
254 # Download jenkins war
255-juju ssh $MASTER "status jenkins &&\
256+juju ssh $MASTER "sudo service jenkins status &&\
257 sudo cp -fvp $f_dst '${f_tmp}.${d_str}' &&\
258 export http_proxy=${HTTP_PROXY} && export https_proxy=${HTTPS_PROXY} &&\
259 env | grep proxy &&\
260@@ -28,7 +28,7 @@
261 sudo chmod 644 $f_dst &&\
262 sudo service jenkins restart &&\
263 sleep 10 &&\
264- status jenkins"
265+ sudo service jenkins status"
266
267 v_new=$(juju ssh $MASTER "curl http://localhost:8080 -I 2> /dev/null | \
268 grep 'X-Jenkins:'")
269
270=== modified file 'deployment/bin/120-install-plugins.sh'
271--- deployment/bin/120-install-plugins.sh 2014-10-02 15:18:00 +0000
272+++ deployment/bin/120-install-plugins.sh 2014-10-06 20:55:43 +0000
273@@ -23,14 +23,21 @@
274 fi
275
276 # Make sure jenkins web interface is ready for login before proceeding
277-j_state() { curl -s ${master_url} | grep Welcome || echo 'not ready'; }
278+j_state() {
279+ htm=$(curl -s ${master_url} || true)
280+ if [[ "$htm" =~ "Ubuntu OpenStack CI" ]]; then
281+ echo 'ready'
282+ else
283+ echo 'not ready'
284+ fi
285+}
286
287 ready=$(j_state)
288 tries=0
289-while [ "$ready" == 'not ready' ] && [ $tries -le 30 ]
290+while [ "$ready" == 'not ready' ] && [ $tries -le 45 ]
291 do
292 echo "Jenkins is ${ready} @ ${master_url} (attempt ${tries})"
293- sleep 1
294+ sleep 2
295 ready=$(j_state)
296 tries=$(( $tries + 1 ))
297 done
298@@ -73,4 +80,4 @@
299
300 # Restart the jenkins master service
301 juju ssh ${MASTER} "sudo service jenkins restart &&\
302- sudo status jenkins"
303+ sudo service jenkins status"
304
305=== modified file 'deployment/bin/125-jobs-static-initial.sh'
306--- deployment/bin/125-jobs-static-initial.sh 2014-10-02 15:18:00 +0000
307+++ deployment/bin/125-jobs-static-initial.sh 2014-10-06 20:55:43 +0000
308@@ -26,8 +26,7 @@
309 echo "copying ${f_src} file into ${MASTER}"
310 juju scp $f_src ${MASTER}:${f_tmp}
311 juju ssh ${MASTER} "sudo cp -vf ${f_tmp} ${f_dst} &&\
312- cd "${JENKINS_HOME}/jobs" &&\
313- sudo tar -zxvf $f_name
314+ sudo tar -zxvf $f_name -C ${JENKINS_HOME}/jobs -X $f_name &&\
315 sudo chown jenkins:jenkins -R ${JENKINS_HOME}/jobs &&\
316 sudo service jenkins restart &&\
317- sudo status jenkins"
318+ sudo service jenkins status"
319
320=== added file 'deployment/bin/130-theme.sh'
321--- deployment/bin/130-theme.sh 1970-01-01 00:00:00 +0000
322+++ deployment/bin/130-theme.sh 2014-10-06 20:55:43 +0000
323@@ -0,0 +1,36 @@
324+#!/bin/bash -ex
325+echo $0
326+
327+# Set up small web server, plugin config, and css override
328+# Useful for visually differentiating multiple jenkins environments
329+
330+. $(dirname $0)/../../env-common
331+
332+juju ssh ${MASTER} "sudo apt-get install lighttpd -y"
333+
334+# copy theme xml into master
335+f_dst="${JENKINS_HOME}/org.codefirst.SimpleThemeDecorator.xml"
336+f_tmp="${U_HOME}/org.codefirst.SimpleThemeDecorator.xml"
337+f_src="deploy-files/org.codefirst.SimpleThemeDecorator.xml"
338+juju scp $f_src ${MASTER}:${f_tmp}
339+juju ssh ${MASTER} "sudo cp -f ${f_tmp} ${f_dst} &&\
340+ sudo chown jenkins:jenkins ${f_dst}"
341+
342+# copy index.html into master /var/www/
343+f_dst="/var/www/index.html"
344+f_tmp="${U_HOME}/index.html"
345+f_src="deploy-files/index.html"
346+juju scp $f_src ${MASTER}:${f_tmp}
347+juju ssh ${MASTER} "sudo cp -f ${f_tmp} ${f_dst} &&\
348+ sudo service lighttpd stop &&\
349+ sudo service lighttpd start"
350+
351+# copy jenkins-alt.css into master /var/www/
352+f_dst="/var/www/jenkins-alt.css"
353+f_tmp="${U_HOME}/jenkins-alt.css"
354+f_src="deploy-files/jenkins-alt.css"
355+juju scp $f_src ${MASTER}:${f_tmp}
356+juju ssh ${MASTER} "sudo cp -f ${f_tmp} ${f_dst}"
357+
358+echo "You'll still need to place the master's floating ip \
359+ in the jenkins global settings, and maybe restart lighttpd."
360
361=== modified file 'deployment/bin/142-tox-install.sh'
362--- deployment/bin/142-tox-install.sh 2014-10-02 15:18:00 +0000
363+++ deployment/bin/142-tox-install.sh 2014-10-06 20:55:43 +0000
364@@ -6,7 +6,7 @@
365 . $(dirname $0)/../../env-common
366
367 for unit in $UNITS; do
368- juju ssh ${unit} "sudo apt-get install python-pip &&\
369+ juju ssh ${unit} "sudo apt-get install python-pip -y &&\
370 export http_proxy=${HTTP_PROXY} &&\
371 export https_proxy=${HTTPS_PROXY} &&\
372 sudo -E pip install tox"
373
374=== modified file 'deployment/bin/144-flake8-install.sh'
375--- deployment/bin/144-flake8-install.sh 2014-10-02 15:18:00 +0000
376+++ deployment/bin/144-flake8-install.sh 2014-10-06 20:55:43 +0000
377@@ -6,7 +6,7 @@
378 . $(dirname $0)/../../env-common
379
380 for unit in $UNITS; do
381- juju ssh ${unit} "sudo apt-get install python-pip &&\
382+ juju ssh ${unit} "sudo apt-get install python-pip -y &&\
383 export http_proxy=${HTTP_PROXY} &&\
384 export https_proxy=${HTTPS_PROXY} &&\
385 sudo -E pip install flake8"
386
387=== added file 'deployment/bin/225-juju-gui-float.sh'
388--- deployment/bin/225-juju-gui-float.sh 1970-01-01 00:00:00 +0000
389+++ deployment/bin/225-juju-gui-float.sh 2014-10-06 20:55:43 +0000
390@@ -0,0 +1,51 @@
391+#!/bin/bash -ex
392+echo $0
393+
394+# Assign a floating IP to the juju-gui unit
395+
396+. $(dirname $0)/../../env-common
397+
398+nova list
399+
400+ip_f_str="10.98."
401+
402+function get_ip_f() {
403+ local var=$(nova floating-ip-list | grep '\- ' | awk '{ print $2 }' | head -n 1 |\
404+ egrep '^((25[0-5]|2[0-4][0-9]|[1]?[1-9][0-9]?).){3}(25[0-5]|2[0-4][0-9]|[1]?[1-9]?[0-9])$')
405+ echo $var
406+}
407+
408+# Get UUID of jenkins instance
409+unit_uuid=$(juju status juju-gui | grep instance-id | awk '{ print $2 }' |\
410+ egrep '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}')
411+if [ -z "$unit_uuid" ]; then
412+ echo "Couldn't get UUID for jenkins master instance."
413+ exit 1
414+fi
415+
416+# Check for existing floating IP on jenkins master instance
417+if [ ! -z "$(nova list | grep .*${unit_uuid}.*${ip_f_str})" ]; then
418+ echo "Instance already has floating IP."
419+ nova list | grep $unit_uuid
420+ exit 0
421+fi
422+
423+# Get a free floating IP if available, create one if not.
424+ip_f=$(get_ip_f)
425+if [ -z "$ip_f" ]; then
426+ echo "Asking for a new floating IP."
427+ nova floating-ip-create
428+ ip_f=$(get_ip_f)
429+ if [ -z "$ip_f" ]; then
430+ echo "Couldn't get floating IP."
431+ exit 1
432+ fi
433+fi
434+
435+# Associate the floating IP
436+nova floating-ip-associate $unit_uuid $ip_f
437+echo "===================juju gui info ==================="
438+juju status juju-gui
439+nova list | grep $unit_uuid
440+echo "Juju GUI floating IP: ${ip_f}"
441+
442
443=== removed file 'deployment/deploy-files/WIP.script-pieces'
444--- deployment/deploy-files/WIP.script-pieces 2014-10-02 15:18:00 +0000
445+++ deployment/deploy-files/WIP.script-pieces 1970-01-01 00:00:00 +0000
446@@ -1,24 +0,0 @@
447-# ===== charm tests
448-#!/bin/bash -xe
449-branch=lp:~1chb1n/charms/trusty/cinder/next
450-codetemp=$HOME/codetemp
451-
452-subdir="${codetemp}/$(echo ${branch%/*} | cut -d '/' -f 2-)"
453-branch_to="${codetemp}/$(echo $branch | cut -d '/' -f 2-)"
454-
455-# Clear the way!
456-if [ -d "$branch_to" ]; then
457- rm -rf "$branch_to"
458-fi
459-
460-if [ ! -d "$subdir" ]; then
461- mkdir -p $subdir
462-fi
463-
464-# Fresh pull
465-bzr branch $branch $branch_to
466-
467-# Tools
468-sudo apt-get update -y
469-sudo apt-get install juju-deployer amulet -y
470-
471
472=== modified file 'deployment/deploy-files/config.xml.global'
473--- deployment/deploy-files/config.xml.global 2014-10-02 15:18:00 +0000
474+++ deployment/deploy-files/config.xml.global 2014-10-06 20:55:43 +0000
475@@ -22,7 +22,7 @@
476 <string>OPENSTACK_UBUNTU_ROOT</string>
477 <string>/var/lib/jenkins/tools/openstack-ubuntu-testing</string>
478 <string>OSCI_REPO</string>
479- <string>lp:~1chb1n/+junk/ubuntu-openstack-ci</string>
480+ <string>lp:~1chb1n/ubuntu-openstack-ci/ubuntu-openstack-ci-trusty</string>
481 <string>OSCI_ROOT</string>
482 <string>/var/lib/jenkins/tools/ubuntu-openstack-ci</string>
483 <string>TARMAC_REPO</string>
484@@ -31,6 +31,8 @@
485 <string>/var/lib/jenkins/tools/tarmac</string>
486 <string>USER</string>
487 <string>jenkins</string>
488+ <string>AMULET_HTTP_PROXY</string>
489+ <string>http://squid.internal:3128</string>
490 </tree-map>
491 </envVars>
492 </hudson.slaves.EnvironmentVariablesNodeProperty>
493
494=== modified file 'deployment/deploy-files/config.xml.views'
495--- deployment/deploy-files/config.xml.views 2014-10-02 15:18:00 +0000
496+++ deployment/deploy-files/config.xml.views 2014-10-06 20:55:43 +0000
497@@ -1,11 +1,3 @@
498- <hudson.model.AllView>
499- <owner class="hudson" reference="../../.."/>
500- <name>All</name>
501- <description>If you want to kick off a manual run, see Triggers. All other defined jobs are likel sub-parts of a trigger.</description>
502- <filterExecutors>false</filterExecutors>
503- <filterQueue>false</filterQueue>
504- <properties class="hudson.model.View$PropertyList"/>
505- </hudson.model.AllView>
506 <listView>
507 <owner class="hudson" reference="../../.."/>
508 <name>System</name>
509@@ -48,7 +40,7 @@
510 <hudson.views.LastDurationColumn/>
511 <hudson.views.BuildButtonColumn/>
512 </columns>
513- <includeRegex>deploy.*</includeRegex>
514+ <includeRegex>.*deploy.*</includeRegex>
515 <recurse>false</recurse>
516 </listView>
517 <listView>
518@@ -60,21 +52,290 @@
519 <properties class="hudson.model.View$PropertyList"/>
520 <jobNames>
521 <comparator class="hudson.util.CaseInsensitiveComparator"/>
522- <string>trigger_deploy_on_branch_change</string>
523- <string>trigger_deploy_with_deployer_manual</string>
524- <string>trigger_happy_on_osci_branch_change</string>
525- </jobNames>
526- <jobFilters/>
527- <columns>
528- <hudson.views.StatusColumn/>
529- <hudson.views.WeatherColumn/>
530- <hudson.views.JobColumn/>
531- <hudson.views.LastSuccessColumn/>
532- <hudson.views.LastFailureColumn/>
533- <hudson.views.LastDurationColumn/>
534- <hudson.views.BuildButtonColumn/>
535- </columns>
536- <includeRegex>.*trigger.*</includeRegex>
537+ <string>scheduled_trigger_lint</string>
538+ </jobNames>
539+ <jobFilters/>
540+ <columns>
541+ <hudson.views.StatusColumn/>
542+ <hudson.views.WeatherColumn/>
543+ <hudson.views.JobColumn/>
544+ <hudson.views.LastSuccessColumn/>
545+ <hudson.views.LastFailureColumn/>
546+ <hudson.views.LastDurationColumn/>
547+ <hudson.views.BuildButtonColumn/>
548+ </columns>
549+ <includeRegex>.*trigger.*|.*manual.*</includeRegex>
550+ <recurse>false</recurse>
551+ </listView>
552+ <hudson.plugins.view.dashboard.Dashboard plugin="dashboard-view@2.9.4">
553+ <owner class="hudson" reference="../../.."/>
554+ <name>Dashboard: Lint</name>
555+ <filterExecutors>false</filterExecutors>
556+ <filterQueue>false</filterQueue>
557+ <properties class="hudson.model.View$PropertyList"/>
558+ <jobNames>
559+ <comparator class="hudson.util.CaseInsensitiveComparator"/>
560+ <string>charm_lint_check</string>
561+ </jobNames>
562+ <jobFilters/>
563+ <columns>
564+ <hudson.views.StatusColumn/>
565+ <hudson.views.WeatherColumn/>
566+ <hudson.views.JobColumn/>
567+ <hudson.views.LastSuccessColumn/>
568+ <hudson.views.LastFailureColumn/>
569+ <hudson.views.LastDurationColumn/>
570+ <hudson.views.LastStableColumn/>
571+ <hudson.views.BuildButtonColumn/>
572+ </columns>
573+ <recurse>true</recurse>
574+ <useCssStyle>false</useCssStyle>
575+ <includeStdJobList>true</includeStdJobList>
576+ <leftPortletWidth>50%</leftPortletWidth>
577+ <rightPortletWidth>50%</rightPortletWidth>
578+ <leftPortlets/>
579+ <rightPortlets/>
580+ <topPortlets/>
581+ <bottomPortlets>
582+ <hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
583+ <id>dashboard_portlet_15210</id>
584+ <name>Unstable Jobs</name>
585+ <showOnlyFailedJobs>false</showOnlyFailedJobs>
586+ <recurse>true</recurse>
587+ </hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
588+ <hudson.plugins.view.dashboard.stats.StatSlaves>
589+ <id>dashboard_portlet_8509</id>
590+ <name>Slaves statistics</name>
591+ </hudson.plugins.view.dashboard.stats.StatSlaves>
592+ <hudson.plugins.view.dashboard.builds.LatestBuilds>
593+ <id>dashboard_portlet_28182</id>
594+ <name>100 Latest builds</name>
595+ <numBuilds>100</numBuilds>
596+ </hudson.plugins.view.dashboard.builds.LatestBuilds>
597+ </bottomPortlets>
598+ </hudson.plugins.view.dashboard.Dashboard>
599+ <hudson.plugins.view.dashboard.Dashboard plugin="dashboard-view@2.9.4">
600+ <owner class="hudson" reference="../../.."/>
601+ <name>Dashboard: Unit</name>
602+ <filterExecutors>false</filterExecutors>
603+ <filterQueue>false</filterQueue>
604+ <properties class="hudson.model.View$PropertyList"/>
605+ <jobNames>
606+ <comparator class="hudson.util.CaseInsensitiveComparator"/>
607+ <string>charm_unit_test</string>
608+ </jobNames>
609+ <jobFilters/>
610+ <columns>
611+ <hudson.views.StatusColumn/>
612+ <hudson.views.WeatherColumn/>
613+ <hudson.views.JobColumn/>
614+ <hudson.views.LastSuccessColumn/>
615+ <hudson.views.LastFailureColumn/>
616+ <hudson.views.LastDurationColumn/>
617+ <hudson.views.LastStableColumn/>
618+ <hudson.views.BuildButtonColumn/>
619+ </columns>
620+ <recurse>true</recurse>
621+ <useCssStyle>false</useCssStyle>
622+ <includeStdJobList>true</includeStdJobList>
623+ <leftPortletWidth>50%</leftPortletWidth>
624+ <rightPortletWidth>50%</rightPortletWidth>
625+ <leftPortlets/>
626+ <rightPortlets/>
627+ <topPortlets/>
628+ <bottomPortlets>
629+ <hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
630+ <id>dashboard_portlet_31880</id>
631+ <name>Unstable Jobs</name>
632+ <showOnlyFailedJobs>false</showOnlyFailedJobs>
633+ <recurse>true</recurse>
634+ </hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
635+ <hudson.plugins.view.dashboard.stats.StatSlaves>
636+ <id>dashboard_portlet_20352</id>
637+ <name>Slaves statistics</name>
638+ </hudson.plugins.view.dashboard.stats.StatSlaves>
639+ <hudson.plugins.view.dashboard.builds.LatestBuilds>
640+ <id>dashboard_portlet_5482</id>
641+ <name>100 Latest builds</name>
642+ <numBuilds>100</numBuilds>
643+ </hudson.plugins.view.dashboard.builds.LatestBuilds>
644+ </bottomPortlets>
645+ </hudson.plugins.view.dashboard.Dashboard>
646+ <hudson.plugins.view.dashboard.Dashboard plugin="dashboard-view@2.9.4">
647+ <owner class="hudson" reference="../../.."/>
648+ <name>Dashboard: Amulet</name>
649+ <filterExecutors>false</filterExecutors>
650+ <filterQueue>false</filterQueue>
651+ <properties class="hudson.model.View$PropertyList"/>
652+ <jobNames>
653+ <comparator class="hudson.util.CaseInsensitiveComparator"/>
654+ <string>charm_amulet_test</string>
655+ </jobNames>
656+ <jobFilters/>
657+ <columns>
658+ <hudson.views.StatusColumn/>
659+ <hudson.views.WeatherColumn/>
660+ <hudson.views.JobColumn/>
661+ <hudson.views.LastSuccessColumn/>
662+ <hudson.views.LastFailureColumn/>
663+ <hudson.views.LastDurationColumn/>
664+ <hudson.views.LastStableColumn/>
665+ <hudson.views.BuildButtonColumn/>
666+ </columns>
667+ <recurse>true</recurse>
668+ <useCssStyle>false</useCssStyle>
669+ <includeStdJobList>true</includeStdJobList>
670+ <leftPortletWidth>50%</leftPortletWidth>
671+ <rightPortletWidth>50%</rightPortletWidth>
672+ <leftPortlets/>
673+ <rightPortlets/>
674+ <topPortlets/>
675+ <bottomPortlets>
676+ <hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
677+ <id>dashboard_portlet_9028</id>
678+ <name>Unstable Jobs</name>
679+ <showOnlyFailedJobs>false</showOnlyFailedJobs>
680+ <recurse>true</recurse>
681+ </hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
682+ <hudson.plugins.view.dashboard.stats.StatSlaves>
683+ <id>dashboard_portlet_4968</id>
684+ <name>Slaves statistics</name>
685+ </hudson.plugins.view.dashboard.stats.StatSlaves>
686+ <hudson.plugins.view.dashboard.builds.LatestBuilds>
687+ <id>dashboard_portlet_21110</id>
688+ <name>100 Latest builds</name>
689+ <numBuilds>100</numBuilds>
690+ </hudson.plugins.view.dashboard.builds.LatestBuilds>
691+ </bottomPortlets>
692+ </hudson.plugins.view.dashboard.Dashboard>
693+ <hudson.plugins.view.dashboard.Dashboard plugin="dashboard-view@2.9.4">
694+ <owner class="hudson" reference="../../.."/>
695+ <name>Dashboard: Scanner</name>
696+ <filterExecutors>false</filterExecutors>
697+ <filterQueue>false</filterQueue>
698+ <properties class="hudson.model.View$PropertyList"/>
699+ <jobNames>
700+ <comparator class="hudson.util.CaseInsensitiveComparator"/>
701+ <string>trigger_by_branch_scanner</string>
702+ </jobNames>
703+ <jobFilters/>
704+ <columns>
705+ <hudson.views.StatusColumn/>
706+ <hudson.views.WeatherColumn/>
707+ <hudson.views.JobColumn/>
708+ <hudson.views.LastSuccessColumn/>
709+ <hudson.views.LastFailureColumn/>
710+ <hudson.views.LastDurationColumn/>
711+ <hudson.views.LastStableColumn/>
712+ <hudson.views.BuildButtonColumn/>
713+ </columns>
714+ <recurse>true</recurse>
715+ <useCssStyle>false</useCssStyle>
716+ <includeStdJobList>true</includeStdJobList>
717+ <leftPortletWidth>50%</leftPortletWidth>
718+ <rightPortletWidth>50%</rightPortletWidth>
719+ <leftPortlets/>
720+ <rightPortlets>
721+ <hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
722+ <id>dashboard_portlet_4483</id>
723+ <name>Unstable Jobs</name>
724+ <showOnlyFailedJobs>false</showOnlyFailedJobs>
725+ <recurse>false</recurse>
726+ </hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
727+ </rightPortlets>
728+ <topPortlets/>
729+ <bottomPortlets>
730+ <hudson.plugins.view.dashboard.stats.StatSlaves>
731+ <id>dashboard_portlet_834</id>
732+ <name>Slaves statistics</name>
733+ </hudson.plugins.view.dashboard.stats.StatSlaves>
734+ <hudson.plugins.view.dashboard.builds.LatestBuilds>
735+ <id>dashboard_portlet_28995</id>
736+ <name>100 Latest builds</name>
737+ <numBuilds>100</numBuilds>
738+ </hudson.plugins.view.dashboard.builds.LatestBuilds>
739+ <au.com.centrumsystems.hudson.plugin.buildpipeline.dashboard.BuildPipelineDashboard plugin="build-pipeline-plugin@1.4.3">
740+ <id>dashboard_portlet_24643</id>
741+ <name>Build Pipeline Dashboard View</name>
742+ <gridBuilder class="au.com.centrumsystems.hudson.plugin.buildpipeline.DownstreamProjectGridBuilder">
743+ <firstJob>trigger_by_branch_scanner</firstJob>
744+ </gridBuilder>
745+ <noOfDisplayedBuilds>100</noOfDisplayedBuilds>
746+ <description></description>
747+ </au.com.centrumsystems.hudson.plugin.buildpipeline.dashboard.BuildPipelineDashboard>
748+ </bottomPortlets>
749+ </hudson.plugins.view.dashboard.Dashboard>
750+ <hudson.plugins.view.dashboard.Dashboard plugin="dashboard-view@2.9.4">
751+ <owner class="hudson" reference="../../.."/>
752+ <name>Dashboard: Deploy</name>
753+ <description>PASS = deployed cleanly&#xd;
754+Be aware that tempest fails will not cause job failure.&#xd;
755+</description>
756+ <filterExecutors>false</filterExecutors>
757+ <filterQueue>false</filterQueue>
758+ <properties class="hudson.model.View$PropertyList"/>
759+ <jobNames>
760+ <comparator class="hudson.util.CaseInsensitiveComparator"/>
761+ <string>deploy_with_deployer</string>
762+ </jobNames>
763+ <jobFilters/>
764+ <columns>
765+ <hudson.views.StatusColumn/>
766+ <hudson.views.WeatherColumn/>
767+ <hudson.views.JobColumn/>
768+ <hudson.views.LastSuccessColumn/>
769+ <hudson.views.LastFailureColumn/>
770+ <hudson.views.LastDurationColumn/>
771+ <hudson.views.LastStableColumn/>
772+ <hudson.views.BuildButtonColumn/>
773+ </columns>
774+ <recurse>true</recurse>
775+ <useCssStyle>false</useCssStyle>
776+ <includeStdJobList>true</includeStdJobList>
777+ <leftPortletWidth>50%</leftPortletWidth>
778+ <rightPortletWidth>50%</rightPortletWidth>
779+ <leftPortlets/>
780+ <rightPortlets/>
781+ <topPortlets/>
782+ <bottomPortlets>
783+ <hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
784+ <id>dashboard_portlet_24355</id>
785+ <name>Unstable Jobs</name>
786+ <showOnlyFailedJobs>false</showOnlyFailedJobs>
787+ <recurse>true</recurse>
788+ </hudson.plugins.view.dashboard.core.UnstableJobsPortlet>
789+ <hudson.plugins.view.dashboard.stats.StatSlaves>
790+ <id>dashboard_portlet_5349</id>
791+ <name>Slaves statistics</name>
792+ </hudson.plugins.view.dashboard.stats.StatSlaves>
793+ <hudson.plugins.view.dashboard.builds.LatestBuilds>
794+ <id>dashboard_portlet_22040</id>
795+ <name>100 Latest builds</name>
796+ <numBuilds>100</numBuilds>
797+ </hudson.plugins.view.dashboard.builds.LatestBuilds>
798+ </bottomPortlets>
799+ </hudson.plugins.view.dashboard.Dashboard>
800+ <listView>
801+ <owner class="hudson" reference="../../.."/>
802+ <name>Tools</name>
803+ <description>Tools for manual checks, troubleshooting or cleanup.</description>
804+ <filterExecutors>false</filterExecutors>
805+ <filterQueue>false</filterQueue>
806+ <properties class="hudson.model.View$PropertyList"/>
807+ <jobNames>
808+ <comparator class="hudson.util.CaseInsensitiveComparator"/>
809+ </jobNames>
810+ <jobFilters/>
811+ <columns>
812+ <hudson.views.StatusColumn/>
813+ <hudson.views.WeatherColumn/>
814+ <hudson.views.JobColumn/>
815+ <hudson.views.LastSuccessColumn/>
816+ <hudson.views.LastFailureColumn/>
817+ <hudson.views.LastDurationColumn/>
818+ <hudson.views.BuildButtonColumn/>
819+ </columns>
820+ <includeRegex>_.*</includeRegex>
821 <recurse>false</recurse>
822 </listView>
823 </views>
824
825=== added file 'deployment/deploy-files/index.html'
826--- deployment/deploy-files/index.html 1970-01-01 00:00:00 +0000
827+++ deployment/deploy-files/index.html 2014-10-06 20:55:43 +0000
828@@ -0,0 +1,21 @@
829+<html>
830+<head>
831+<title>
832+_: Welcome
833+</title>
834+</head>
835+<body>
836+<center>
837+<br/>
838+<br/>
839+<br/>
840+<br/>
841+<br/>
842+_: Welcome
843+<br/>
844+<br/>
845+<br/>
846+<br/>
847+</center>
848+</body>
849+</html>
850
851=== added file 'deployment/deploy-files/jenkins-alt.css'
852--- deployment/deploy-files/jenkins-alt.css 1970-01-01 00:00:00 +0000
853+++ deployment/deploy-files/jenkins-alt.css 2014-10-06 20:55:43 +0000
854@@ -0,0 +1,41 @@
855+body {
856+ background: #efffed;
857+}
858+
859+#header {
860+background-color: #55aa77;
861+height: 40px;
862+}
863+
864+h1, h2, h3, h4, h5, h6 {
865+ color: #337755; }
866+
867+.tabBar .tab a:hover {
868+background: #337755;
869+color: #ffffff;
870+}
871+
872+.tabBar .tab a {
873+position: relative;
874+display: block;
875+border: solid 1px #ccff55;
876+border-bottom: none;
877+text-decoration: none;
878+color: #ccff55;
879+padding: 7px 10px;
880+border-top-left-radius: 5px;
881+border-top-right-radius: 5px;
882+}
883+
884+.tabBar .tab a {
885+position: relative;
886+display: block;
887+border: solid 1px #ffffff;
888+border-bottom: none;
889+text-decoration: none;
890+color: #ffffff;
891+padding: 7px 10px;
892+border-top-left-radius: 5px;
893+border-top-right-radius: 5px;
894+background: #55aa77;
895+}
896
897=== added file 'deployment/deploy-files/org.codefirst.SimpleThemeDecorator.xml'
898--- deployment/deploy-files/org.codefirst.SimpleThemeDecorator.xml 1970-01-01 00:00:00 +0000
899+++ deployment/deploy-files/org.codefirst.SimpleThemeDecorator.xml 2014-10-06 20:55:43 +0000
900@@ -0,0 +1,6 @@
901+<?xml version='1.0' encoding='UTF-8'?>
902+<org.codefirst.SimpleThemeDecorator plugin="simple-theme-plugin@0.3">
903+ <cssUrl>http://localhost/jenkins-alt.css</cssUrl>
904+ <jsUrl></jsUrl>
905+</org.codefirst.SimpleThemeDecorator>
906+
907
908=== modified file 'deployment/deploy-files/plugins'
909--- deployment/deploy-files/plugins 2014-10-02 15:18:00 +0000
910+++ deployment/deploy-files/plugins 2014-10-06 20:55:43 +0000
911@@ -10,25 +10,21 @@
912 downstream-buildview
913 email-ext
914 fstrigger
915-gerrit-trigger
916 git
917 git-client
918 greenballs
919 instant-messaging
920 ircbot
921-javadoc
922 jobConfigHistory
923 mailer
924-maven-plugin
925 nested-view
926 nodelabelparameter
927 parameterized-trigger
928-publish-over-ssh
929+purge-build-queue-plugin
930 rebuild
931 scm-api
932 shelve-project-plugin
933-sonar
934-ssh-credentials
935+simple-theme-plugin
936 startup-trigger-plugin
937 template-project
938 throttle-concurrents
939
940=== removed file 'deployment/deploy-files/serverstack_http_proxy'
941--- deployment/deploy-files/serverstack_http_proxy 2014-10-02 15:18:00 +0000
942+++ deployment/deploy-files/serverstack_http_proxy 1970-01-01 00:00:00 +0000
943@@ -1,3 +0,0 @@
944-export http_proxy=http://squid.internal:3128/
945-export https_proxy=https://squid.internal:3128/
946-
947
948=== removed directory 'deployment/dev-hold'
949=== removed file 'deployment/dev-hold/101-ubuntu-openstack-ci_small.yaml'
950--- deployment/dev-hold/101-ubuntu-openstack-ci_small.yaml 2014-10-02 15:18:00 +0000
951+++ deployment/dev-hold/101-ubuntu-openstack-ci_small.yaml 1970-01-01 00:00:00 +0000
952@@ -1,32 +0,0 @@
953-ubuntu-openstack-ci:
954- series: precise
955- services:
956- jenkins:
957- charm: "cs:precise/jenkins"
958- constraints: "cpu-cores=2 mem=2G arch=amd64"
959- num_units: 1
960- options:
961-# plugins: "ssh timestamper libvirt-slave virtualbox vmware bazaar git fstrigger publish-over-ssh ircbot instant-messaging startup-trigger-plugin"
962-# plugins: ""
963-# "plugins-check-certificate": "yes"
964-# "plugins-site": "https://updates.jenkins-ci.org/"
965- release: distro
966- "remove-unlisted-plugins": "no"
967- tools: git gcc make bzr iptraf htop sysstat nmap nload multitail wget lynx
968- username: ubuntu
969- password: ubuntu
970- annotations:
971- "gui-x": 597
972- "gui-y": -36
973- "jenkins-slave":
974- charm: "cs:precise/jenkins-slave"
975- constraints: "cpu-cores=2 mem=2G arch=amd64"
976- num_units: 1
977- options:
978- tools: git gcc make bzr iptraf htop sysstat nmap nload multitail wget lynx
979- annotations:
980- "gui-x": 599
981- "gui-y": 230
982- relations:
983- - - "jenkins:master"
984- - "jenkins-slave:slave"
985
986=== removed file 'deployment/dev-hold/101-uosci-ci-branch-trusty.yaml'
987--- deployment/dev-hold/101-uosci-ci-branch-trusty.yaml 2014-10-02 15:18:00 +0000
988+++ deployment/dev-hold/101-uosci-ci-branch-trusty.yaml 1970-01-01 00:00:00 +0000
989@@ -1,27 +0,0 @@
990-# WIP, not working, possibly due to proxy / noproxy.
991-
992-# See also local config.yaml and README
993-# Be aware that neutron networks are dynamically generated based on
994-# these units. Naming of 'jenkins' and 'jenkins-slave' are
995-# significant to deployment and post-deployment scripts.
996-ubuntu-openstack-ci:
997- series: trusty
998- services:
999- jenkins:
1000- branch: "lp:~canonical-ci/charms/precise/jenkins/trunk"
1001- num_units: 1
1002- options:
1003- release: trunk
1004- "remove-unlisted-plugins": "no"
1005- tools: git gcc make bzr iptraf htop nmap nload multitail wget
1006- username: ubuntu
1007- password: ubuntu
1008- "jenkins-slave":
1009- series: precise
1010- branch: "lp:~canonical-ci/charms/precise/jenkins-slave/trunk"
1011- num_units: 3
1012- options:
1013- tools: git gcc make bzr iptraf htop nmap nload multitail wget
1014- relations:
1015- - - "jenkins:master"
1016- - "jenkins-slave:slave"
1017
1018=== removed file 'deployment/dev-hold/102-uosci-cs-master-ci-slave.yaml'
1019--- deployment/dev-hold/102-uosci-cs-master-ci-slave.yaml 2014-10-02 15:18:00 +0000
1020+++ deployment/dev-hold/102-uosci-cs-master-ci-slave.yaml 1970-01-01 00:00:00 +0000
1021@@ -1,32 +0,0 @@
1022-# WIP, not working, possibly due to proxy / noproxy.
1023-ubuntu-openstack-ci:
1024- series: trusty
1025- services:
1026- jenkins:
1027-# charm: "cs:precise/jenkins"
1028- branch: "lp:~canonical-ci/charms/precise/jenkins/trunk"
1029-# constraints: "cpu-cores=2 mem=4G arch=amd64"
1030- num_units: 1
1031- options:
1032- release: trunk
1033- "remove-unlisted-plugins": "no"
1034- tools: git gcc make bzr iptraf htop nmap nload multitail wget
1035- username: ubuntu
1036- password: ubuntu
1037-# annotations:
1038-# "gui-x": 597
1039-# "gui-y": -36
1040- "jenkins-slave":
1041- series: precise
1042-# charm: "cs:precise/jenkins-slave"
1043- branch: "lp:~canonical-ci/charms/precise/jenkins-slave/trunk"
1044-# constraints: "cpu-cores=2 mem=4G arch=amd64"
1045- num_units: 3
1046- options:
1047- tools: git gcc make bzr iptraf htop nmap nload multitail wget
1048-# annotations:
1049-# "gui-x": 599
1050-# "gui-y": 230
1051- relations:
1052- - - "jenkins:master"
1053- - "jenkins-slave:slave"
1054
1055=== removed file 'deployment/dev-hold/103-ok.status'
1056--- deployment/dev-hold/103-ok.status 2014-10-02 15:18:00 +0000
1057+++ deployment/dev-hold/103-ok.status 1970-01-01 00:00:00 +0000
1058@@ -1,67 +0,0 @@
1059-environment: beis1
1060-machines:
1061- "0":
1062- agent-state: started
1063- agent-version: 1.20.1
1064- dns-name: 10.5.8.168
1065- instance-id: 797553d9-0e26-4c62-8693-2064ac692c4a
1066- instance-state: ACTIVE
1067- series: trusty
1068- hardware: arch=amd64 cpu-cores=1 mem=2048M root-disk=10240M
1069- state-server-member-status: has-vote
1070- "1":
1071- agent-state: started
1072- agent-version: 1.20.1
1073- dns-name: 10.5.8.169
1074- instance-id: 893135bb-dd9c-407e-aff5-d7c2a369bca8
1075- instance-state: ACTIVE
1076- series: precise
1077- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1078- "2":
1079- agent-state: started
1080- agent-version: 1.20.1
1081- dns-name: 10.5.8.170
1082- instance-id: a65b0952-f7f2-4c52-83c7-fed7456c9c71
1083- instance-state: ACTIVE
1084- series: precise
1085- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1086- "3":
1087- agent-state: started
1088- agent-version: 1.20.1
1089- dns-name: 10.5.8.171
1090- instance-id: 15ef605f-d200-4ada-a995-531dd5573c58
1091- instance-state: ACTIVE
1092- series: precise
1093- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1094-services:
1095- jenkins:
1096- charm: cs:precise/jenkins-2
1097- exposed: false
1098- relations:
1099- master:
1100- - jenkins-slave
1101- units:
1102- jenkins/0:
1103- agent-state: started
1104- agent-version: 1.20.1
1105- machine: "1"
1106- open-ports:
1107- - 8080/tcp
1108- public-address: 10.5.8.169
1109- jenkins-slave:
1110- charm: cs:precise/jenkins-slave-6
1111- exposed: false
1112- relations:
1113- slave:
1114- - jenkins
1115- units:
1116- jenkins-slave/0:
1117- agent-state: started
1118- agent-version: 1.20.1
1119- machine: "2"
1120- public-address: 10.5.8.170
1121- jenkins-slave/1:
1122- agent-state: started
1123- agent-version: 1.20.1
1124- machine: "3"
1125- public-address: 10.5.8.171
1126
1127=== removed file 'deployment/dev-hold/103-ubuntu-openstack-ci_old-revs.yaml'
1128--- deployment/dev-hold/103-ubuntu-openstack-ci_old-revs.yaml 2014-10-02 15:18:00 +0000
1129+++ deployment/dev-hold/103-ubuntu-openstack-ci_old-revs.yaml 1970-01-01 00:00:00 +0000
1130@@ -1,33 +0,0 @@
1131-jenkins-os-ci:
1132- series: precise
1133- services:
1134- jenkins:
1135- charm: "cs:precise/jenkins-2"
1136- constraints: "cpu-cores=2 mem=4G arch=amd64"
1137- num_units: 1
1138- options:
1139-# plugins: "ssh timestamper libvirt-slave virtualbox vmware bazaar git fstrigger publish-over-ssh ircbot instant-messaging startup-trigger-plugin"
1140-# plugins: ""
1141-# "plugins-check-certificate": "yes"
1142-# "plugins-site": "https://updates.jenkins-ci.org/"
1143- release: distro
1144- "remove-unlisted-plugins": "no"
1145- tools: git gcc make bzr
1146- username: ubuntu
1147- password: ubuntu
1148- annotations:
1149- "gui-x": 597
1150- "gui-y": -36
1151- "jenkins-slave":
1152- charm: "cs:precise/jenkins-slave-6"
1153- constraints: "cpu-cores=2 mem=2G arch=amd64"
1154- num_units: 2
1155- options:
1156- tools: git gcc make bzr
1157- annotations:
1158- "gui-x": 599
1159- "gui-y": 230
1160- relations:
1161- - - "jenkins:master"
1162- - "jenkins-slave:slave"
1163-
1164
1165=== removed file 'deployment/dev-hold/105-bug-prep.txt'
1166--- deployment/dev-hold/105-bug-prep.txt 2014-10-02 15:18:00 +0000
1167+++ deployment/dev-hold/105-bug-prep.txt 1970-01-01 00:00:00 +0000
1168@@ -1,198 +0,0 @@
1169-## 105-ubuntu-openstack-ci_via-branch.yaml:
1170-
1171-ubuntu-openstack-ci:
1172- series: precise
1173- services:
1174- jenkins:
1175- branch: lp:charms/jenkins
1176- constraints: "cpu-cores=2 mem=2G arch=amd64"
1177- num_units: 1
1178- options:
1179-# plugins: "ssh timestamper libvirt-slave virtualbox vmware bazaar git fstrigger publish-over-ssh ircbot instant-messaging startup-trigger-plugin"
1180-# plugins: ""
1181-# "plugins-check-certificate": "yes"
1182-# "plugins-site": "https://updates.jenkins-ci.org/"
1183- release: distro
1184- "remove-unlisted-plugins": "no"
1185- tools: git gcc make bzr lynx iptraf multitail nmap nload
1186- username: ubuntu
1187- password: ubuntu
1188- annotations:
1189- "gui-x": 597
1190- "gui-y": -36
1191- "jenkins-slave":
1192- branch: lp:charms/jenkins-slave
1193- constraints: "cpu-cores=2 mem=2G arch=amd64"
1194- num_units: 2
1195- options:
1196- tools: git gcc make bzr lynx iptraf multitail nmap nload
1197- annotations:
1198- "gui-x": 599
1199- "gui-y": 230
1200- relations:
1201- - - "jenkins:master"
1202- - "jenkins-slave:slave"
1203-
1204-
1205-## Deployment
1206-
1207-juju-deployer -e beis1 -v -d -B -c 105-ubuntu-openstack-ci_via-branch.yaml
1208-2014-08-14 14:44:01 [DEBUG] deployer.cli: Using runtime GoEnvironment on beis1
1209-2014-08-14 14:44:01 [INFO] deployer.cli: Using deployment ubuntu-openstack-ci
1210-2014-08-14 14:44:01 [INFO] deployer.cli: Starting deployment of ubuntu-openstack-ci
1211-2014-08-14 14:44:01 [INFO] deployer.env: bootstraping, this might take a while...
1212-2014-08-14 14:45:23 [INFO] deployer.env: Bootstrap complete
1213-2014-08-14 14:45:23 [DEBUG] deployer.env: Connected to environment
1214-2014-08-14 14:45:23 [DEBUG] deployer.import: Getting charms...
1215-2014-08-14 14:45:23 [DEBUG] deployer.charm: Branching charm lp:charms/jenkins @ precise/jenkins
1216-2014-08-14 14:45:30 [DEBUG] deployer.charm: Branching charm lp:charms/jenkins-slave @ precise/jenkins-slave
1217-2014-08-14 14:45:35 [DEBUG] deployer.deploy: Resolving configuration
1218-2014-08-14 14:45:35 [INFO] deployer.import: Deploying services...
1219-2014-08-14 14:45:35 [DEBUG] deployer.import: <deployer.env.go.GoEnvironment object at 0x7fa7bdc7a050>
1220-2014-08-14 14:45:36 [INFO] deployer.import: Deploying service jenkins using local:precise/jenkins
1221-2014-08-14 14:45:40 [DEBUG] deployer.import: Setting annotations
1222-2014-08-14 14:45:40 [INFO] deployer.import: Deploying service jenkins-slave using local:precise/jenkins-slave
1223-2014-08-14 14:45:47 [DEBUG] deployer.import: Setting annotations
1224-2014-08-14 14:45:53 [DEBUG] deployer.import: Adding units...
1225-2014-08-14 14:45:53 [DEBUG] deployer.import: Service 'jenkins' does not need any more units added.
1226-2014-08-14 14:45:53 [DEBUG] deployer.import: Service 'jenkins-slave' does not need any more units added.
1227-2014-08-14 14:45:53 [DEBUG] deployer.import: Waiting for units before adding relations
1228-2014-08-14 14:45:56 [DEBUG] deployer.env: Delta machine: 3 change:pending
1229-2014-08-14 14:45:56 [DEBUG] deployer.env: Delta machine: 1 change:pending
1230-2014-08-14 14:46:01 [DEBUG] deployer.env: Delta machine: 2 change:pending
1231-2014-08-14 14:46:11 [DEBUG] deployer.env: Delta machine: 3 change:pending
1232-2014-08-14 14:46:31 [DEBUG] deployer.env: Delta machine: 1 change:pending
1233-2014-08-14 14:46:31 [DEBUG] deployer.env: Delta machine: 1 change:started
1234-2014-08-14 14:46:31 [DEBUG] deployer.env: Delta unit: jenkins/0 change:pending
1235-2014-08-14 14:46:41 [DEBUG] deployer.env: Delta machine: 2 change:pending
1236-2014-08-14 14:46:41 [DEBUG] deployer.env: Delta machine: 2 change:started
1237-2014-08-14 14:46:41 [DEBUG] deployer.env: Delta machine: 3 change:started
1238-2014-08-14 14:46:41 [DEBUG] deployer.env: Delta unit: jenkins-slave/0 change:pending
1239-2014-08-14 14:46:41 [DEBUG] deployer.env: Delta unit: jenkins-slave/1 change:pending
1240-2014-08-14 14:47:11 [DEBUG] deployer.env: Delta unit: jenkins-slave/1 change:started
1241-2014-08-14 14:47:11 [DEBUG] deployer.env: Delta unit: jenkins-slave/0 change:started
1242-2014-08-14 14:47:11 [DEBUG] deployer.env: Delta unit: jenkins/0 change:installed
1243-2014-08-14 14:47:16 [DEBUG] deployer.env: Delta unit: jenkins/0 change:installed
1244-2014-08-14 14:47:16 [DEBUG] deployer.env: Delta unit: jenkins/0 change:started
1245-2014-08-14 14:47:16 [INFO] deployer.import: Adding relations...
1246-2014-08-14 14:47:17 [INFO] deployer.import: Adding relation jenkins:master <-> jenkins-slave:slave
1247-2014-08-14 14:47:17 [DEBUG] deployer.import: Waiting for relation convergence 60s
1248-2014-08-14 14:48:17 [ERROR] deployer.env: The following units had errors:
1249- unit: jenkins/0: machine: 1 agent-state: error details: hook failed: "master-relation-changed"
1250-2014-08-14 14:48:17 [INFO] deployer.cli: Deployment stopped. run time: 256.57
1251-
1252-
1253-
1254-## Branch info:
1255-
1256-bzr revno jenkins
1257-30
1258-
1259-bzr info jenkins
1260-Lightweight checkout (format: 2a)
1261-Location:
1262- light checkout root: jenkins
1263- checkout of branch: bzr+ssh://bazaar.launchpad.net/+branch/charms/jenkins/
1264- shared repository: bzr+ssh://bazaar.launchpad.net/+branch/charms/jenkins/
1265-
1266-Related branches:
1267- parent branch: bzr+ssh://bazaar.launchpad.net/~serge-hallyn/principia/oneiric/jenkins/trunk/
1268-
1269-bzr revno jenkins-slave
1270-13
1271-
1272-bzr info jenkins-slave
1273-Lightweight checkout (format: 2a)
1274-Location:
1275- light checkout root: jenkins-slave
1276- checkout of branch: bzr+ssh://bazaar.launchpad.net/+branch/charms/jenkins-slave/
1277- shared repository: bzr+ssh://bazaar.launchpad.net/+branch/charms/jenkins-slave/
1278-
1279-Related branches:
1280- parent branch: bzr+ssh://bazaar.launchpad.net/~jenkins-formula-dev/principia/oneiric/ensemble/jenkins-slave/
1281-
1282-
1283-## Juju status:
1284-
1285-environment: beis1
1286-machines:
1287- "0":
1288- agent-state: started
1289- agent-version: 1.20.1
1290- dns-name: 10.5.9.59
1291- instance-id: 15a1d736-eedf-4de6-ba73-7044ca373e20
1292- instance-state: ACTIVE
1293- series: trusty
1294- hardware: arch=amd64 cpu-cores=1 mem=2048M root-disk=10240M
1295- state-server-member-status: has-vote
1296- "1":
1297- agent-state: started
1298- agent-version: 1.20.1
1299- dns-name: 10.5.9.60
1300- instance-id: ed22090f-7184-4b19-876d-f7630c220686
1301- instance-state: ACTIVE
1302- series: precise
1303- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1304- "2":
1305- agent-state: started
1306- agent-version: 1.20.1
1307- dns-name: 10.5.9.61
1308- instance-id: e7ac9257-f7c8-4323-a81f-6c850fb941e1
1309- instance-state: ACTIVE
1310- series: precise
1311- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1312- "3":
1313- agent-state: started
1314- agent-version: 1.20.1
1315- dns-name: 10.5.9.62
1316- instance-id: e0b7f9c2-d71d-4b7f-bd91-20d8703cf0fe
1317- instance-state: ACTIVE
1318- series: precise
1319- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1320-services:
1321- jenkins:
1322- charm: local:precise/jenkins-2
1323- exposed: false
1324- relations:
1325- master:
1326- - jenkins-slave
1327- units:
1328- jenkins/0:
1329- agent-state: error
1330- agent-state-info: 'hook failed: "master-relation-changed" for jenkins-slave:slave'
1331- agent-version: 1.20.1
1332- machine: "1"
1333- open-ports:
1334- - 8080/tcp
1335- public-address: 10.5.9.60
1336- jenkins-slave:
1337- charm: local:precise/jenkins-slave-9
1338- exposed: false
1339- relations:
1340- slave:
1341- - jenkins
1342- units:
1343- jenkins-slave/0:
1344- agent-state: started
1345- agent-version: 1.20.1
1346- machine: "2"
1347- public-address: 10.5.9.61
1348- jenkins-slave/1:
1349- agent-state: started
1350- agent-version: 1.20.1
1351- machine: "3"
1352- public-address: 10.5.9.62
1353-
1354-
1355-## Logs:
1356-
1357-master - unit-jenkins-0.log
1358-http://paste.ubuntu.com/8046120/
1359-
1360-slave unit-jenkins-slave-0.log
1361-http://paste.ubuntu.com/8046121/
1362-
1363-master - jenkins.log
1364-http://paste.ubuntu.com/8046153/
1365-
1366-no jenkins log on slave
1367
1368=== removed file 'deployment/dev-hold/105-fails.status'
1369--- deployment/dev-hold/105-fails.status 2014-10-02 15:18:00 +0000
1370+++ deployment/dev-hold/105-fails.status 1970-01-01 00:00:00 +0000
1371@@ -1,68 +0,0 @@
1372-environment: beis1
1373-machines:
1374- "0":
1375- agent-state: started
1376- agent-version: 1.20.1
1377- dns-name: 10.5.8.216
1378- instance-id: f347048e-fc7f-4a87-bad5-cf5e4cc402b9
1379- instance-state: ACTIVE
1380- series: trusty
1381- hardware: arch=amd64 cpu-cores=1 mem=2048M root-disk=10240M
1382- state-server-member-status: has-vote
1383- "1":
1384- agent-state: started
1385- agent-version: 1.20.1
1386- dns-name: 10.5.8.218
1387- instance-id: 7ece171b-7dad-451c-b088-8fbaaf965285
1388- instance-state: ACTIVE
1389- series: precise
1390- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1391- "2":
1392- agent-state: started
1393- agent-version: 1.20.1
1394- dns-name: 10.5.8.217
1395- instance-id: 6d7e1cdf-bd36-40e1-9e5e-c54d29813c46
1396- instance-state: ACTIVE
1397- series: precise
1398- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1399- "3":
1400- agent-state: started
1401- agent-version: 1.20.1
1402- dns-name: 10.5.8.219
1403- instance-id: 2ca3f1d4-d32c-4cc0-aec0-2b0c70b8cde6
1404- instance-state: ACTIVE
1405- series: precise
1406- hardware: arch=amd64 cpu-cores=2 mem=4096M root-disk=10240M
1407-services:
1408- jenkins:
1409- charm: local:precise/jenkins-2
1410- exposed: false
1411- relations:
1412- master:
1413- - jenkins-slave
1414- units:
1415- jenkins/0:
1416- agent-state: error
1417- agent-state-info: 'hook failed: "master-relation-changed" for jenkins-slave:slave'
1418- agent-version: 1.20.1
1419- machine: "1"
1420- open-ports:
1421- - 8080/tcp
1422- public-address: 10.5.8.218
1423- jenkins-slave:
1424- charm: local:precise/jenkins-slave-9
1425- exposed: false
1426- relations:
1427- slave:
1428- - jenkins
1429- units:
1430- jenkins-slave/0:
1431- agent-state: started
1432- agent-version: 1.20.1
1433- machine: "2"
1434- public-address: 10.5.8.217
1435- jenkins-slave/1:
1436- agent-state: started
1437- agent-version: 1.20.1
1438- machine: "3"
1439- public-address: 10.5.8.219
1440
1441=== removed file 'deployment/dev-hold/105-ubuntu-openstack-ci_via-branch.yaml'
1442--- deployment/dev-hold/105-ubuntu-openstack-ci_via-branch.yaml 2014-10-02 15:18:00 +0000
1443+++ deployment/dev-hold/105-ubuntu-openstack-ci_via-branch.yaml 1970-01-01 00:00:00 +0000
1444@@ -1,34 +0,0 @@
1445-# NOTE(beisner): Using branch causes master relation fail on precise & trusty
1446-# This bundle is in place for future diags and charm dev testing.
1447-ubuntu-openstack-ci:
1448- series: precise
1449- services:
1450- jenkins:
1451- branch: lp:charms/jenkins
1452- constraints: "cpu-cores=2 mem=2G arch=amd64"
1453- num_units: 1
1454- options:
1455-# plugins: "ssh timestamper libvirt-slave virtualbox vmware bazaar git fstrigger publish-over-ssh ircbot instant-messaging startup-trigger-plugin"
1456-# plugins: ""
1457-# "plugins-check-certificate": "yes"
1458-# "plugins-site": "https://updates.jenkins-ci.org/"
1459- release: distro
1460- "remove-unlisted-plugins": "no"
1461- tools: git gcc make bzr lynx iptraf multitail nmap nload
1462- username: ubuntu
1463- password: ubuntu
1464- annotations:
1465- "gui-x": 597
1466- "gui-y": -36
1467- "jenkins-slave":
1468- branch: lp:charms/jenkins-slave
1469- constraints: "cpu-cores=2 mem=2G arch=amd64"
1470- num_units: 2
1471- options:
1472- tools: git gcc make bzr lynx iptraf multitail nmap nload
1473- annotations:
1474- "gui-x": 599
1475- "gui-y": 230
1476- relations:
1477- - - "jenkins:master"
1478- - "jenkins-slave:slave"
1479
1480=== removed file 'deployment/dev-hold/config.xml.afterauth'
1481--- deployment/dev-hold/config.xml.afterauth 2014-10-02 15:18:00 +0000
1482+++ deployment/dev-hold/config.xml.afterauth 1970-01-01 00:00:00 +0000
1483@@ -1,87 +0,0 @@
1484-<?xml version='1.0' encoding='UTF-8'?>
1485-<hudson>
1486- <disabledAdministrativeMonitors/>
1487- <version>1.0</version>
1488- <numExecutors>2</numExecutors>
1489- <mode>NORMAL</mode>
1490- <authorizationStrategy class="hudson.security.GlobalMatrixAuthorizationStrategy">
1491- <permission>hudson.model.Computer.Connect:anonymous</permission>
1492- <permission>hudson.model.Hudson.Administer:ubuntu</permission>
1493- <permission>hudson.model.Hudson.ConfigureUpdateCenter:ubuntu</permission>
1494- <permission>hudson.model.Hudson.Read:anonymous</permission>
1495- <permission>hudson.model.Hudson.Read:ubuntu</permission>
1496- <permission>hudson.model.Hudson.RunScripts:ubuntu</permission>
1497- <permission>hudson.model.Hudson.UploadPlugins:ubuntu</permission>
1498- </authorizationStrategy>
1499- <securityRealm class="hudson.security.HudsonPrivateSecurityRealm">
1500- <disableSignup>true</disableSignup>
1501- <enableCaptcha>false</enableCaptcha>
1502- </securityRealm>
1503- <workspaceDir>${ITEM_ROOTDIR}/workspace</workspaceDir>
1504- <buildsDir>${ITEM_ROOTDIR}/builds</buildsDir>
1505- <jdks/>
1506- <viewsTabBar class="hudson.views.DefaultViewsTabBar"/>
1507- <myViewsTabBar class="hudson.views.DefaultMyViewsTabBar"/>
1508- <clouds/>
1509- <slaves>
1510- <slave>
1511- <name>osci-slave-1</name>
1512- <description>osci-slave-1</description>
1513- <remoteFS>/var/lib/jenkins</remoteFS>
1514- <numExecutors>2</numExecutors>
1515- <mode>NORMAL</mode>
1516- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1517- <launcher class="hudson.slaves.JNLPLauncher"/>
1518- <label>x86_64</label>
1519- <nodeProperties/>
1520- </slave>
1521- <slave>
1522- <name>osci-slave-2</name>
1523- <description>osci-slave-2</description>
1524- <remoteFS>/var/lib/jenkins</remoteFS>
1525- <numExecutors>2</numExecutors>
1526- <mode>NORMAL</mode>
1527- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1528- <launcher class="hudson.slaves.JNLPLauncher"/>
1529- <label>x86_64</label>
1530- <nodeProperties/>
1531- </slave>
1532- <slave>
1533- <name>osci-slave-3</name>
1534- <description>osci-slave-3</description>
1535- <remoteFS>/var/lib/jenkins</remoteFS>
1536- <numExecutors>2</numExecutors>
1537- <mode>NORMAL</mode>
1538- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1539- <launcher class="hudson.slaves.JNLPLauncher"/>
1540- <label>x86_64</label>
1541- <nodeProperties/>
1542- </slave>
1543- <slave>
1544- <name>osci-slave-0</name>
1545- <description>osci-slave-0</description>
1546- <remoteFS>/var/lib/jenkins</remoteFS>
1547- <numExecutors>2</numExecutors>
1548- <mode>NORMAL</mode>
1549- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1550- <launcher class="hudson.slaves.JNLPLauncher"/>
1551- <label>x86_64</label>
1552- <nodeProperties/>
1553- </slave>
1554- </slaves>
1555- <scmCheckoutRetryCount>0</scmCheckoutRetryCount>
1556- <views>
1557- <hudson.model.AllView>
1558- <owner class="hudson" reference="../../.."/>
1559- <name>All</name>
1560- <filterExecutors>false</filterExecutors>
1561- <filterQueue>false</filterQueue>
1562- <properties class="hudson.model.View$PropertyList"/>
1563- </hudson.model.AllView>
1564- </views>
1565- <primaryView>All</primaryView>
1566- <slaveAgentPort>0</slaveAgentPort>
1567- <label></label>
1568- <nodeProperties/>
1569- <globalNodeProperties/>
1570-</hudson>
1571\ No newline at end of file
1572
1573=== removed file 'deployment/dev-hold/config.xml.aftermod2'
1574--- deployment/dev-hold/config.xml.aftermod2 2014-10-02 15:18:00 +0000
1575+++ deployment/dev-hold/config.xml.aftermod2 1970-01-01 00:00:00 +0000
1576@@ -1,116 +0,0 @@
1577-<?xml version='1.0' encoding='UTF-8'?>
1578-<hudson>
1579- <disabledAdministrativeMonitors/>
1580- <version>1.577</version>
1581- <numExecutors>2</numExecutors>
1582- <mode>NORMAL</mode>
1583- <useSecurity>true</useSecurity>
1584- <authorizationStrategy class="hudson.security.GlobalMatrixAuthorizationStrategy">
1585- <permission>hudson.model.Computer.Connect:anonymous</permission>
1586- <permission>hudson.model.Hudson.Administer:ubuntu</permission>
1587- <permission>hudson.model.Hudson.ConfigureUpdateCenter:ubuntu</permission>
1588- <permission>hudson.model.Hudson.Read:anonymous</permission>
1589- <permission>hudson.model.Hudson.Read:ubuntu</permission>
1590- <permission>hudson.model.Hudson.RunScripts:ubuntu</permission>
1591- <permission>hudson.model.Hudson.UploadPlugins:ubuntu</permission>
1592- <permission>hudson.model.Item.Read:anonymous</permission>
1593- <permission>hudson.model.Item.Read:ubuntu</permission>
1594- </authorizationStrategy>
1595- <securityRealm class="hudson.security.HudsonPrivateSecurityRealm">
1596- <disableSignup>true</disableSignup>
1597- <enableCaptcha>false</enableCaptcha>
1598- </securityRealm>
1599- <disableRememberMe>false</disableRememberMe>
1600- <projectNamingStrategy class="jenkins.model.ProjectNamingStrategy$DefaultProjectNamingStrategy"/>
1601- <workspaceDir>${ITEM_ROOTDIR}/workspace</workspaceDir>
1602- <buildsDir>${ITEM_ROOTDIR}/builds</buildsDir>
1603- <systemMessage>U.OSCI: Ubuntu OpenStack CI</systemMessage>
1604- <jdks/>
1605- <viewsTabBar class="hudson.views.DefaultViewsTabBar"/>
1606- <myViewsTabBar class="hudson.views.DefaultMyViewsTabBar"/>
1607- <clouds/>
1608- <slaves>
1609- <slave>
1610- <name>osci-slave-1</name>
1611- <description>osci-slave-1</description>
1612- <remoteFS>/var/lib/jenkins</remoteFS>
1613- <numExecutors>2</numExecutors>
1614- <mode>NORMAL</mode>
1615- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1616- <launcher class="hudson.slaves.JNLPLauncher"/>
1617- <label>x86_64</label>
1618- <nodeProperties/>
1619- </slave>
1620- <slave>
1621- <name>osci-slave-2</name>
1622- <description>osci-slave-2</description>
1623- <remoteFS>/var/lib/jenkins</remoteFS>
1624- <numExecutors>2</numExecutors>
1625- <mode>NORMAL</mode>
1626- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1627- <launcher class="hudson.slaves.JNLPLauncher"/>
1628- <label>x86_64</label>
1629- <nodeProperties/>
1630- </slave>
1631- <slave>
1632- <name>osci-slave-3</name>
1633- <description>osci-slave-3</description>
1634- <remoteFS>/var/lib/jenkins</remoteFS>
1635- <numExecutors>2</numExecutors>
1636- <mode>NORMAL</mode>
1637- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1638- <launcher class="hudson.slaves.JNLPLauncher"/>
1639- <label>x86_64</label>
1640- <nodeProperties/>
1641- </slave>
1642- <slave>
1643- <name>osci-slave-0</name>
1644- <description>osci-slave-0</description>
1645- <remoteFS>/var/lib/jenkins</remoteFS>
1646- <numExecutors>2</numExecutors>
1647- <mode>NORMAL</mode>
1648- <retentionStrategy class="hudson.slaves.RetentionStrategy$Always"/>
1649- <launcher class="hudson.slaves.JNLPLauncher"/>
1650- <label>x86_64</label>
1651- <nodeProperties/>
1652- </slave>
1653- </slaves>
1654- <quietPeriod>5</quietPeriod>
1655- <scmCheckoutRetryCount>0</scmCheckoutRetryCount>
1656- <views>
1657- <hudson.model.AllView>
1658- <owner class="hudson" reference="../../.."/>
1659- <name>All</name>
1660- <filterExecutors>false</filterExecutors>
1661- <filterQueue>false</filterQueue>
1662- <properties class="hudson.model.View$PropertyList"/>
1663- </hudson.model.AllView>
1664- </views>
1665- <primaryView>All</primaryView>
1666- <slaveAgentPort>0</slaveAgentPort>
1667- <label></label>
1668- <nodeProperties/>
1669- <globalNodeProperties>
1670- <hudson.slaves.EnvironmentVariablesNodeProperty>
1671- <envVars serialization="custom">
1672- <unserializable-parents/>
1673- <tree-map>
1674- <default>
1675- <comparator class="hudson.util.CaseInsensitiveComparator"/>
1676- </default>
1677- <int>5</int>
1678- <string>DEBEMAIL</string>
1679- <string>openstack-testing-bot@ubuntu.com</string>
1680- <string>DEBFULLNAME</string>
1681- <string>Openstack Ubuntu Testing Bot</string>
1682- <string>HOME</string>
1683- <string>/var/lib/jenkins</string>
1684- <string>OPENSTACK_UBUNTU_ROOT</string>
1685- <string>/var/lib/jenkins/tools/openstack-ubuntu-testing</string>
1686- <string>USER</string>
1687- <string>jenkins</string>
1688- </tree-map>
1689- </envVars>
1690- </hudson.slaves.EnvironmentVariablesNodeProperty>
1691- </globalNodeProperties>
1692-</hudson>
1693\ No newline at end of file
1694
1695=== removed file 'deployment/dev-hold/config.xml.jclouds'
1696--- deployment/dev-hold/config.xml.jclouds 2014-10-02 15:18:00 +0000
1697+++ deployment/dev-hold/config.xml.jclouds 1970-01-01 00:00:00 +0000
1698@@ -1,48 +0,0 @@
1699-# Working, except the plugin fails when multiple networks are present. WIP @ plugin dev.
1700-# Identity must be tenantname:username
1701- <clouds>
1702- <jenkins.plugins.jclouds.compute.JCloudsCloud plugin="jclouds-jenkins@2.9-SNAPSHOT">
1703- <name>serverstack</name>
1704- <identity>beisner:beisner</identity>
1705- <credential>xxxxxxxxx</credential>
1706- <providerName>openstack-nova</providerName>
1707- <privateKey></privateKey>
1708- <publicKey></publicKey>
1709- <endPointUrl>http://10.x.x.x:5000/v2.0</endPointUrl>
1710- <profile>serverstack</profile>
1711- <retentionTime>30</retentionTime>
1712- <instanceCap>1024</instanceCap>
1713- <templates>
1714- <jenkins.plugins.jclouds.compute.JCloudsSlaveTemplate>
1715- <name>utopic-daily-20140820</name>
1716- <imageId>serverstack/b5e84d57-76fa-40f5-8681-7c949427e6b6</imageId>
1717- <hardwareId>serverstack/2</hardwareId>
1718- <cores>1.0</cores>
1719- <ram>512</ram>
1720- <osFamily></osFamily>
1721- <labelString></labelString>
1722- <description></description>
1723- <osVersion></osVersion>
1724- <initScript></initScript>
1725- <userData></userData>
1726- <numExecutors></numExecutors>
1727- <stopOnTerminate>false</stopOnTerminate>
1728- <preInstalledJava>false</preInstalledJava>
1729- <preExistingJenkinsUser>false</preExistingJenkinsUser>
1730- <allowSudo>false</allowSudo>
1731- <installPrivateKey>false</installPrivateKey>
1732- <overrideRetentionTime>0</overrideRetentionTime>
1733- <spoolDelayMs>0</spoolDelayMs>
1734- <delayLockObject/>
1735- <assignFloatingIp>false</assignFloatingIp>
1736- <keyPairName></keyPairName>
1737- <assignPublicIp>true</assignPublicIp>
1738- <networks></networks>
1739- <securityGroups></securityGroups>
1740- </jenkins.plugins.jclouds.compute.JCloudsSlaveTemplate>
1741- </templates>
1742- <scriptTimeout>600000</scriptTimeout>
1743- <startTimeout>600000</startTimeout>
1744- </jenkins.plugins.jclouds.compute.JCloudsCloud>
1745- </clouds>
1746-
1747
1748=== removed file 'deployment/dev-hold/config.xml.views'
1749--- deployment/dev-hold/config.xml.views 2014-10-02 15:18:00 +0000
1750+++ deployment/dev-hold/config.xml.views 1970-01-01 00:00:00 +0000
1751@@ -1,54 +0,0 @@
1752- <views>
1753- <hudson.model.AllView>
1754- <owner class="hudson" reference="../../.."/>
1755- <name>All</name>
1756- <filterExecutors>false</filterExecutors>
1757- <filterQueue>false</filterQueue>
1758- <properties class="hudson.model.View$PropertyList"/>
1759- </hudson.model.AllView>
1760- <listView>
1761- <owner class="hudson" reference="../../.."/>
1762- <name>Utilities</name>
1763- <filterExecutors>false</filterExecutors>
1764- <filterQueue>false</filterQueue>
1765- <properties class="hudson.model.View$PropertyList"/>
1766- <jobNames>
1767- <comparator class="hudson.util.CaseInsensitiveComparator"/>
1768- <string>_system_juju_stat</string>
1769- </jobNames>
1770- <jobFilters/>
1771- <columns>
1772- <hudson.views.StatusColumn/>
1773- <hudson.views.WeatherColumn/>
1774- <hudson.views.JobColumn/>
1775- <hudson.views.LastSuccessColumn/>
1776- <hudson.views.LastFailureColumn/>
1777- <hudson.views.LastDurationColumn/>
1778- <hudson.views.BuildButtonColumn/>
1779- </columns>
1780- <includeRegex>_system.*</includeRegex>
1781- <recurse>false</recurse>
1782- </listView>
1783- <listView>
1784- <owner class="hudson" reference="../../.."/>
1785- <name>Deploy</name>
1786- <filterExecutors>false</filterExecutors>
1787- <filterQueue>false</filterQueue>
1788- <properties class="hudson.model.View$PropertyList"/>
1789- <jobNames>
1790- <comparator class="hudson.util.CaseInsensitiveComparator" reference="../../../listView/jobNames/comparator"/>
1791- </jobNames>
1792- <jobFilters/>
1793- <columns>
1794- <hudson.views.StatusColumn/>
1795- <hudson.views.WeatherColumn/>
1796- <hudson.views.JobColumn/>
1797- <hudson.views.LastSuccessColumn/>
1798- <hudson.views.LastFailureColumn/>
1799- <hudson.views.LastDurationColumn/>
1800- <hudson.views.BuildButtonColumn/>
1801- </columns>
1802- <includeRegex>deploy.*</includeRegex>
1803- <recurse>false</recurse>
1804- </listView>
1805- </views>
1806
1807=== removed file 'deployment/dev-hold/jenkins.log'
1808--- deployment/dev-hold/jenkins.log 2014-10-02 15:18:00 +0000
1809+++ deployment/dev-hold/jenkins.log 1970-01-01 00:00:00 +0000
1810@@ -1,87 +0,0 @@
1811-Running from: /usr/share/jenkins/jenkins.war
1812-[Winstone 2014/08/14 14:46:57] - Beginning extraction from war file
1813-Running from: /usr/share/jenkins/jenkins.war
1814-[Winstone 2014/08/14 14:46:59] - Beginning extraction from war file
1815-Jenkins home directory: /var/lib/jenkins found at: EnvVars.masterEnvVars.get("JENKINS_HOME")
1816-[Winstone 2014/08/14 14:47:01] - HTTP Listener started: port=8080
1817-[Winstone 2014/08/14 14:47:01] - Winstone Servlet Engine v0.9.10 running: controlPort=disabled
1818-Aug 14, 2014 2:47:01 PM jenkins.model.Jenkins$6 onAttained
1819-INFO: Started initialization
1820-Aug 14, 2014 2:47:01 PM jenkins.model.Jenkins$6 onAttained
1821-INFO: Listed all plugins
1822-Aug 14, 2014 2:47:01 PM jenkins.model.Jenkins$6 onAttained
1823-INFO: Prepared all plugins
1824-Aug 14, 2014 2:47:01 PM jenkins.model.Jenkins$6 onAttained
1825-INFO: Started all plugins
1826-Aug 14, 2014 2:47:01 PM jenkins.model.Jenkins$6 onAttained
1827-INFO: Augmented all extensions
1828-Aug 14, 2014 2:47:01 PM jenkins.model.Jenkins$6 onAttained
1829-INFO: Loaded all jobs
1830-Aug 14, 2014 2:47:03 PM jenkins.model.Jenkins$6 onAttained
1831-INFO: Completed initialization
1832-Aug 14, 2014 2:47:04 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
1833-INFO: Refreshing Root WebApplicationContext: startup date [Thu Aug 14 14:47:04 UTC 2014]; root of context hierarchy
1834-Aug 14, 2014 2:47:04 PM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
1835-INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@2e883c86: defining beans [authenticationManager]; root of factory hierarchy
1836-Aug 14, 2014 2:47:04 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
1837-INFO: Refreshing Root WebApplicationContext: startup date [Thu Aug 14 14:47:04 UTC 2014]; root of context hierarchy
1838-Aug 14, 2014 2:47:04 PM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
1839-INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@335c592: defining beans [filter,legacy]; root of factory hierarchy
1840-Aug 14, 2014 2:47:05 PM hudson.TcpSlaveAgentListener <init>
1841-INFO: JNLP slave agent listener started on TCP port 37071
1842-Aug 14, 2014 2:47:05 PM javax.jmdns.impl.HostInfo newHostInfo
1843-WARNING: Could not intialize the host network interface on nullbecause of an error: juju-beis1-machine-1: juju-beis1-machine-1
1844-java.net.UnknownHostException: juju-beis1-machine-1: juju-beis1-machine-1
1845- at java.net.InetAddress.getLocalHost(InetAddress.java:1461)
1846- at javax.jmdns.impl.HostInfo.newHostInfo(HostInfo.java:75)
1847- at javax.jmdns.impl.JmDNSImpl.<init>(JmDNSImpl.java:407)
1848- at javax.jmdns.JmDNS.create(JmDNS.java:60)
1849- at hudson.DNSMultiCast.<init>(DNSMultiCast.java:26)
1850- at jenkins.model.Jenkins.<init>(Jenkins.java:755)
1851- at hudson.model.Hudson.<init>(Hudson.java:81)
1852- at hudson.model.Hudson.<init>(Hudson.java:77)
1853- at hudson.WebAppMain$2.run(WebAppMain.java:217)
1854-[Winstone 2014/08/14 14:47:10] - JVM is terminating. Shutting down Winstone
1855-[Winstone 2014/08/14 14:47:10] - Winstone shutdown successfully
1856-[Winstone 2014/08/14 14:47:10] - Control thread shutdown successfully
1857-Running from: /usr/share/jenkins/jenkins.war
1858-[Winstone 2014/08/14 14:47:11] - Beginning extraction from war file
1859-Jenkins home directory: /var/lib/jenkins found at: EnvVars.masterEnvVars.get("JENKINS_HOME")
1860-[Winstone 2014/08/14 14:47:12] - HTTP Listener started: port=8080
1861-[Winstone 2014/08/14 14:47:12] - Winstone Servlet Engine v0.9.10 running: controlPort=disabled
1862-Aug 14, 2014 2:47:12 PM jenkins.model.Jenkins$6 onAttained
1863-INFO: Started initialization
1864-Aug 14, 2014 2:47:12 PM jenkins.model.Jenkins$6 onAttained
1865-INFO: Listed all plugins
1866-Aug 14, 2014 2:47:12 PM jenkins.model.Jenkins$6 onAttained
1867-INFO: Prepared all plugins
1868-Aug 14, 2014 2:47:12 PM jenkins.model.Jenkins$6 onAttained
1869-INFO: Started all plugins
1870-Aug 14, 2014 2:47:12 PM jenkins.model.Jenkins$6 onAttained
1871-INFO: Augmented all extensions
1872-Aug 14, 2014 2:47:13 PM jenkins.model.Jenkins$6 onAttained
1873-INFO: Loaded all jobs
1874-Aug 14, 2014 2:47:13 PM jenkins.model.Jenkins$6 onAttained
1875-INFO: Completed initialization
1876-Aug 14, 2014 2:47:14 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
1877-INFO: Refreshing Root WebApplicationContext: startup date [Thu Aug 14 14:47:14 UTC 2014]; root of context hierarchy
1878-Aug 14, 2014 2:47:14 PM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
1879-INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@52316c66: defining beans [authenticationManager]; root of factory hierarchy
1880-Aug 14, 2014 2:47:14 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
1881-INFO: Refreshing Root WebApplicationContext: startup date [Thu Aug 14 14:47:14 UTC 2014]; root of context hierarchy
1882-Aug 14, 2014 2:47:14 PM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
1883-INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@91cbe41: defining beans [filter,legacy]; root of factory hierarchy
1884-Aug 14, 2014 2:47:14 PM hudson.TcpSlaveAgentListener <init>
1885-INFO: JNLP slave agent listener started on TCP port 51439
1886-Aug 14, 2014 2:47:14 PM javax.jmdns.impl.HostInfo newHostInfo
1887-WARNING: Could not intialize the host network interface on nullbecause of an error: juju-beis1-machine-1: juju-beis1-machine-1
1888-java.net.UnknownHostException: juju-beis1-machine-1: juju-beis1-machine-1
1889- at java.net.InetAddress.getLocalHost(InetAddress.java:1461)
1890- at javax.jmdns.impl.HostInfo.newHostInfo(HostInfo.java:75)
1891- at javax.jmdns.impl.JmDNSImpl.<init>(JmDNSImpl.java:407)
1892- at javax.jmdns.JmDNS.create(JmDNS.java:60)
1893- at hudson.DNSMultiCast.<init>(DNSMultiCast.java:26)
1894- at jenkins.model.Jenkins.<init>(Jenkins.java:755)
1895- at hudson.model.Hudson.<init>(Hudson.java:81)
1896- at hudson.model.Hudson.<init>(Hudson.java:77)
1897- at hudson.WebAppMain$2.run(WebAppMain.java:217)
1898
1899=== removed file 'deployment/dev-hold/unit-jenkins-0.log'
1900--- deployment/dev-hold/unit-jenkins-0.log 2014-10-02 15:18:00 +0000
1901+++ deployment/dev-hold/unit-jenkins-0.log 1970-01-01 00:00:00 +0000
1902@@ -1,841 +0,0 @@
1903-2014-08-14 14:46:27 INFO juju.cmd supercommand.go:37 running jujud [1.20.1-precise-amd64 gc]
1904-2014-08-14 14:46:27 DEBUG juju.agent agent.go:377 read agent config, format "1.18"
1905-2014-08-14 14:46:27 INFO juju.jujud unit.go:76 unit agent unit-jenkins-0 start (1.20.1-precise-amd64 [gc])
1906-2014-08-14 14:46:27 INFO juju.worker runner.go:260 start "api"
1907-2014-08-14 14:46:27 INFO juju.state.api apiclient.go:242 dialing "wss://10.5.9.59:17070/"
1908-2014-08-14 14:46:27 INFO juju.state.api apiclient.go:176 connection established to "wss://10.5.9.59:17070/"
1909-2014-08-14 14:46:28 INFO juju.state.api apiclient.go:242 dialing "wss://10.5.9.59:17070/"
1910-2014-08-14 14:46:28 INFO juju.state.api apiclient.go:176 connection established to "wss://10.5.9.59:17070/"
1911-2014-08-14 14:46:28 INFO juju.worker runner.go:260 start "upgrader"
1912-2014-08-14 14:46:28 INFO juju.worker runner.go:260 start "logger"
1913-2014-08-14 14:46:28 DEBUG juju.worker.logger logger.go:35 initial log config: "<root>=DEBUG"
1914-2014-08-14 14:46:28 INFO juju.worker runner.go:260 start "uniter"
1915-2014-08-14 14:46:28 DEBUG juju.worker.logger logger.go:60 logger setup
1916-2014-08-14 14:46:28 INFO juju.worker runner.go:260 start "apiaddressupdater"
1917-2014-08-14 14:46:28 INFO juju.worker runner.go:260 start "rsyslog"
1918-2014-08-14 14:46:28 DEBUG juju.worker.rsyslog worker.go:75 starting rsyslog worker mode 1 for "unit-jenkins-0" ""
1919-2014-08-14 14:46:28 DEBUG juju.worker.logger logger.go:45 reconfiguring logging from "<root>=DEBUG" to "<root>=WARNING;unit=DEBUG"
1920-2014-08-14 14:46:29 INFO juju-log Configuring source of jenkins as distro
1921-2014-08-14 14:46:29 INFO juju-log Installing/upgrading jenkins...
1922-2014-08-14 14:46:35 INFO install
1923Extracting templates from packages: 17%
1924Extracting templates from packages: 35%
1925Extracting templates from packages: 52%
1926Extracting templates from packages: 70%
1927Extracting templates from packages: 87%
1928Extracting templates from packages: 100%
1929-2014-08-14 14:46:35 INFO install Preconfiguring packages ...
1930-2014-08-14 14:46:35 INFO install Selecting previously unselected package libasound2.
1931-2014-08-14 14:46:35 INFO install (Reading database ... 48278 files and directories currently installed.)
1932-2014-08-14 14:46:35 INFO install Unpacking libasound2 (from .../libasound2_1.0.25-1ubuntu10.2_amd64.deb) ...
1933-2014-08-14 14:46:35 INFO install Selecting previously unselected package libasyncns0.
1934-2014-08-14 14:46:35 INFO install Unpacking libasyncns0 (from .../libasyncns0_0.8-4_amd64.deb) ...
1935-2014-08-14 14:46:35 INFO install Selecting previously unselected package libatk1.0-data.
1936-2014-08-14 14:46:35 INFO install Unpacking libatk1.0-data (from .../libatk1.0-data_2.4.0-0ubuntu1_all.deb) ...
1937-2014-08-14 14:46:35 INFO install Selecting previously unselected package libatk1.0-0.
1938-2014-08-14 14:46:36 INFO install Unpacking libatk1.0-0 (from .../libatk1.0-0_2.4.0-0ubuntu1_amd64.deb) ...
1939-2014-08-14 14:46:36 INFO install Selecting previously unselected package libgtk2.0-common.
1940-2014-08-14 14:46:36 INFO install Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.24.10-0ubuntu6.1_all.deb) ...
1941-2014-08-14 14:46:36 INFO install Selecting previously unselected package ttf-dejavu-core.
1942-2014-08-14 14:46:36 INFO install Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2ubuntu1_all.deb) ...
1943-2014-08-14 14:46:36 INFO install Selecting previously unselected package fontconfig-config.
1944-2014-08-14 14:46:36 INFO install Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3ubuntu9.1_all.deb) ...
1945-2014-08-14 14:46:36 INFO install Selecting previously unselected package libfontconfig1.
1946-2014-08-14 14:46:36 INFO install Unpacking libfontconfig1 (from .../libfontconfig1_2.8.0-3ubuntu9.1_amd64.deb) ...
1947-2014-08-14 14:46:36 INFO install Selecting previously unselected package libpixman-1-0.
1948-2014-08-14 14:46:36 INFO install Unpacking libpixman-1-0 (from .../libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1_amd64.deb) ...
1949-2014-08-14 14:46:36 INFO install Selecting previously unselected package libxcb-render0.
1950-2014-08-14 14:46:36 INFO install Unpacking libxcb-render0 (from .../libxcb-render0_1.8.1-1ubuntu0.2_amd64.deb) ...
1951-2014-08-14 14:46:36 INFO install Selecting previously unselected package libxcb-shm0.
1952-2014-08-14 14:46:36 INFO install Unpacking libxcb-shm0 (from .../libxcb-shm0_1.8.1-1ubuntu0.2_amd64.deb) ...
1953-2014-08-14 14:46:36 INFO install Selecting previously unselected package libxrender1.
1954-2014-08-14 14:46:36 INFO install Unpacking libxrender1 (from .../libxrender1_1%3a0.9.6-2ubuntu0.1_amd64.deb) ...
1955-2014-08-14 14:46:36 INFO install Selecting previously unselected package libcairo2.
1956-2014-08-14 14:46:36 INFO install Unpacking libcairo2 (from .../libcairo2_1.10.2-6.1ubuntu3_amd64.deb) ...
1957-2014-08-14 14:46:36 INFO install Selecting previously unselected package libavahi-common-data.
1958-2014-08-14 14:46:36 INFO install Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.30-5ubuntu2.1_amd64.deb) ...
1959-2014-08-14 14:46:36 INFO install Selecting previously unselected package libavahi-common3.
1960-2014-08-14 14:46:36 INFO install Unpacking libavahi-common3 (from .../libavahi-common3_0.6.30-5ubuntu2.1_amd64.deb) ...
1961-2014-08-14 14:46:36 INFO install Selecting previously unselected package libavahi-client3.
1962-2014-08-14 14:46:36 INFO install Unpacking libavahi-client3 (from .../libavahi-client3_0.6.30-5ubuntu2.1_amd64.deb) ...
1963-2014-08-14 14:46:36 INFO install Selecting previously unselected package libcups2.
1964-2014-08-14 14:46:36 INFO install Unpacking libcups2 (from .../libcups2_1.5.3-0ubuntu8.4_amd64.deb) ...
1965-2014-08-14 14:46:36 INFO install Selecting previously unselected package libjpeg-turbo8.
1966-2014-08-14 14:46:36 INFO install Unpacking libjpeg-turbo8 (from .../libjpeg-turbo8_1.1.90+svn733-0ubuntu4.4_amd64.deb) ...
1967-2014-08-14 14:46:36 INFO install Selecting previously unselected package libjpeg8.
1968-2014-08-14 14:46:36 INFO install Unpacking libjpeg8 (from .../libjpeg8_8c-2ubuntu7_amd64.deb) ...
1969-2014-08-14 14:46:36 INFO install Selecting previously unselected package libjasper1.
1970-2014-08-14 14:46:37 INFO install Unpacking libjasper1 (from .../libjasper1_1.900.1-13_amd64.deb) ...
1971-2014-08-14 14:46:37 INFO install Selecting previously unselected package libtiff4.
1972-2014-08-14 14:46:37 INFO install Unpacking libtiff4 (from .../libtiff4_3.9.5-2ubuntu1.6_amd64.deb) ...
1973-2014-08-14 14:46:37 INFO install Selecting previously unselected package libgdk-pixbuf2.0-common.
1974-2014-08-14 14:46:37 INFO install Unpacking libgdk-pixbuf2.0-common (from .../libgdk-pixbuf2.0-common_2.26.1-1ubuntu1.1_all.deb) ...
1975-2014-08-14 14:46:37 INFO install Selecting previously unselected package libgdk-pixbuf2.0-0.
1976-2014-08-14 14:46:37 INFO install Unpacking libgdk-pixbuf2.0-0 (from .../libgdk-pixbuf2.0-0_2.26.1-1ubuntu1.1_amd64.deb) ...
1977-2014-08-14 14:46:37 INFO install Selecting previously unselected package libthai-data.
1978-2014-08-14 14:46:37 INFO install Unpacking libthai-data (from .../libthai-data_0.1.16-3_all.deb) ...
1979-2014-08-14 14:46:37 INFO install Selecting previously unselected package libdatrie1.
1980-2014-08-14 14:46:37 INFO install Unpacking libdatrie1 (from .../libdatrie1_0.2.5-3_amd64.deb) ...
1981-2014-08-14 14:46:37 INFO install Selecting previously unselected package libthai0.
1982-2014-08-14 14:46:37 INFO install Unpacking libthai0 (from .../libthai0_0.1.16-3_amd64.deb) ...
1983-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxft2.
1984-2014-08-14 14:46:37 INFO install Unpacking libxft2 (from .../libxft2_2.2.0-3ubuntu2_amd64.deb) ...
1985-2014-08-14 14:46:37 INFO install Selecting previously unselected package fontconfig.
1986-2014-08-14 14:46:37 INFO install Unpacking fontconfig (from .../fontconfig_2.8.0-3ubuntu9.1_amd64.deb) ...
1987-2014-08-14 14:46:37 INFO install Selecting previously unselected package libpango1.0-0.
1988-2014-08-14 14:46:37 INFO install Unpacking libpango1.0-0 (from .../libpango1.0-0_1.30.0-0ubuntu3.1_amd64.deb) ...
1989-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxcomposite1.
1990-2014-08-14 14:46:37 INFO install Unpacking libxcomposite1 (from .../libxcomposite1_1%3a0.4.3-2build1_amd64.deb) ...
1991-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxfixes3.
1992-2014-08-14 14:46:37 INFO install Unpacking libxfixes3 (from .../libxfixes3_1%3a5.0-4ubuntu4.2_amd64.deb) ...
1993-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxcursor1.
1994-2014-08-14 14:46:37 INFO install Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.12-1ubuntu0.1_amd64.deb) ...
1995-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxdamage1.
1996-2014-08-14 14:46:37 INFO install Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.3-2build1_amd64.deb) ...
1997-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxi6.
1998-2014-08-14 14:46:37 INFO install Unpacking libxi6 (from .../libxi6_2%3a1.7.1.901-1ubuntu1~precise1_amd64.deb) ...
1999-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxinerama1.
2000-2014-08-14 14:46:37 INFO install Unpacking libxinerama1 (from .../libxinerama1_2%3a1.1.1-3ubuntu0.1_amd64.deb) ...
2001-2014-08-14 14:46:37 INFO install Selecting previously unselected package libxrandr2.
2002-2014-08-14 14:46:38 INFO install Unpacking libxrandr2 (from .../libxrandr2_2%3a1.3.2-2ubuntu0.2_amd64.deb) ...
2003-2014-08-14 14:46:38 INFO install Selecting previously unselected package shared-mime-info.
2004-2014-08-14 14:46:38 INFO install Unpacking shared-mime-info (from .../shared-mime-info_1.0-0ubuntu4.1_amd64.deb) ...
2005-2014-08-14 14:46:38 INFO install Selecting previously unselected package libgtk2.0-0.
2006-2014-08-14 14:46:38 INFO install Unpacking libgtk2.0-0 (from .../libgtk2.0-0_2.24.10-0ubuntu6.1_amd64.deb) ...
2007-2014-08-14 14:46:38 INFO install Selecting previously unselected package openjdk-6-jre-lib.
2008-2014-08-14 14:46:38 INFO install Unpacking openjdk-6-jre-lib (from .../openjdk-6-jre-lib_6b32-1.13.4-4ubuntu0.12.04.2_all.deb) ...
2009-2014-08-14 14:46:38 INFO install Selecting previously unselected package java-common.
2010-2014-08-14 14:46:38 INFO install Unpacking java-common (from .../java-common_0.43ubuntu2_all.deb) ...
2011-2014-08-14 14:46:38 INFO install Selecting previously unselected package default-jre-headless.
2012-2014-08-14 14:46:38 INFO install Unpacking default-jre-headless (from .../default-jre-headless_1%3a1.6-43ubuntu2_amd64.deb) ...
2013-2014-08-14 14:46:38 INFO install Selecting previously unselected package libnspr4.
2014-2014-08-14 14:46:38 INFO install Unpacking libnspr4 (from .../libnspr4_4.9.5-0ubuntu0.12.04.3_amd64.deb) ...
2015-2014-08-14 14:46:38 INFO install Selecting previously unselected package libnss3.
2016-2014-08-14 14:46:38 INFO install Unpacking libnss3 (from .../libnss3_3.15.4-0ubuntu0.12.04.2_amd64.deb) ...
2017-2014-08-14 14:46:38 INFO install Selecting previously unselected package libnss3-1d.
2018-2014-08-14 14:46:38 INFO install Unpacking libnss3-1d (from .../libnss3-1d_3.15.4-0ubuntu0.12.04.2_amd64.deb) ...
2019-2014-08-14 14:46:38 INFO install Selecting previously unselected package ca-certificates-java.
2020-2014-08-14 14:46:38 INFO install Unpacking ca-certificates-java (from .../ca-certificates-java_20110912ubuntu6_all.deb) ...
2021-2014-08-14 14:46:38 INFO install Selecting previously unselected package tzdata-java.
2022-2014-08-14 14:46:38 INFO install Unpacking tzdata-java (from .../tzdata-java_2014e-0ubuntu0.12.04_all.deb) ...
2023-2014-08-14 14:46:39 INFO install Selecting previously unselected package liblcms2-2.
2024-2014-08-14 14:46:39 INFO install Unpacking liblcms2-2 (from .../liblcms2-2_2.2+git20110628-2ubuntu3.1_amd64.deb) ...
2025-2014-08-14 14:46:39 INFO install Selecting previously unselected package openjdk-6-jre-headless.
2026-2014-08-14 14:46:39 INFO install Unpacking openjdk-6-jre-headless (from .../openjdk-6-jre-headless_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2027-2014-08-14 14:46:39 INFO install Selecting previously unselected package libgif4.
2028-2014-08-14 14:46:39 INFO install Unpacking libgif4 (from .../libgif4_4.1.6-9ubuntu1_amd64.deb) ...
2029-2014-08-14 14:46:39 INFO install Selecting previously unselected package libjson0.
2030-2014-08-14 14:46:39 INFO install Unpacking libjson0 (from .../libjson0_0.9-1ubuntu1.1_amd64.deb) ...
2031-2014-08-14 14:46:39 INFO install Selecting previously unselected package libogg0.
2032-2014-08-14 14:46:39 INFO install Unpacking libogg0 (from .../libogg0_1.2.2~dfsg-1ubuntu1_amd64.deb) ...
2033-2014-08-14 14:46:39 INFO install Selecting previously unselected package libflac8.
2034-2014-08-14 14:46:39 INFO install Unpacking libflac8 (from .../libflac8_1.2.1-6_amd64.deb) ...
2035-2014-08-14 14:46:39 INFO install Selecting previously unselected package libvorbis0a.
2036-2014-08-14 14:46:39 INFO install Unpacking libvorbis0a (from .../libvorbis0a_1.3.2-1ubuntu3_amd64.deb) ...
2037-2014-08-14 14:46:40 INFO install Selecting previously unselected package libvorbisenc2.
2038-2014-08-14 14:46:40 INFO install Unpacking libvorbisenc2 (from .../libvorbisenc2_1.3.2-1ubuntu3_amd64.deb) ...
2039-2014-08-14 14:46:40 INFO install Selecting previously unselected package libsndfile1.
2040-2014-08-14 14:46:40 INFO install Unpacking libsndfile1 (from .../libsndfile1_1.0.25-4_amd64.deb) ...
2041-2014-08-14 14:46:40 INFO install Selecting previously unselected package libpulse0.
2042-2014-08-14 14:46:40 INFO install Unpacking libpulse0 (from .../libpulse0_1%3a1.1-0ubuntu15.4_amd64.deb) ...
2043-2014-08-14 14:46:40 INFO install Selecting previously unselected package x11-common.
2044-2014-08-14 14:46:40 INFO install Unpacking x11-common (from .../x11-common_1%3a7.6+12ubuntu2_all.deb) ...
2045-2014-08-14 14:46:40 INFO install Selecting previously unselected package libxtst6.
2046-2014-08-14 14:46:40 INFO install Unpacking libxtst6 (from .../libxtst6_2%3a1.2.0-4ubuntu0.1_amd64.deb) ...
2047-2014-08-14 14:46:40 INFO install Selecting previously unselected package openjdk-6-jre.
2048-2014-08-14 14:46:40 INFO install Unpacking openjdk-6-jre (from .../openjdk-6-jre_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2049-2014-08-14 14:46:40 INFO install Selecting previously unselected package libatk-wrapper-java.
2050-2014-08-14 14:46:40 INFO install Unpacking libatk-wrapper-java (from .../libatk-wrapper-java_0.30.4-0ubuntu2_all.deb) ...
2051-2014-08-14 14:46:40 INFO install Selecting previously unselected package libatk-wrapper-java-jni.
2052-2014-08-14 14:46:40 INFO install Unpacking libatk-wrapper-java-jni (from .../libatk-wrapper-java-jni_0.30.4-0ubuntu2_amd64.deb) ...
2053-2014-08-14 14:46:40 INFO install Selecting previously unselected package libgcj-common.
2054-2014-08-14 14:46:40 INFO install Unpacking libgcj-common (from .../libgcj-common_1%3a4.6.3-1ubuntu5_all.deb) ...
2055-2014-08-14 14:46:40 INFO install Selecting previously unselected package gcj-4.6-base.
2056-2014-08-14 14:46:40 INFO install Unpacking gcj-4.6-base (from .../gcj-4.6-base_4.6.3-1ubuntu2_amd64.deb) ...
2057-2014-08-14 14:46:40 INFO install Selecting previously unselected package libgcj12.
2058-2014-08-14 14:46:40 INFO install Unpacking libgcj12 (from .../libgcj12_4.6.3-1ubuntu2_amd64.deb) ...
2059-2014-08-14 14:46:41 INFO install Selecting previously unselected package libgcj-bc.
2060-2014-08-14 14:46:41 INFO install Unpacking libgcj-bc (from .../libgcj-bc_4.6.3-1ubuntu5_amd64.deb) ...
2061-2014-08-14 14:46:41 INFO install Selecting previously unselected package libice6.
2062-2014-08-14 14:46:41 INFO install Unpacking libice6 (from .../libice6_2%3a1.0.7-2build1_amd64.deb) ...
2063-2014-08-14 14:46:41 INFO install Selecting previously unselected package libsm6.
2064-2014-08-14 14:46:41 INFO install Unpacking libsm6 (from .../libsm6_2%3a1.2.0-2build1_amd64.deb) ...
2065-2014-08-14 14:46:41 INFO install Selecting previously unselected package libxt6.
2066-2014-08-14 14:46:41 INFO install Unpacking libxt6 (from .../libxt6_1%3a1.1.1-2ubuntu0.1_amd64.deb) ...
2067-2014-08-14 14:46:41 INFO install Selecting previously unselected package libxml-commons-resolver1.1-java.
2068-2014-08-14 14:46:41 INFO install Unpacking libxml-commons-resolver1.1-java (from .../libxml-commons-resolver1.1-java_1.2-7_all.deb) ...
2069-2014-08-14 14:46:41 INFO install Selecting previously unselected package libxml-commons-external-java.
2070-2014-08-14 14:46:41 INFO install Unpacking libxml-commons-external-java (from .../libxml-commons-external-java_1.4.01-2_all.deb) ...
2071-2014-08-14 14:46:41 INFO install Selecting previously unselected package libxerces2-java.
2072-2014-08-14 14:46:41 INFO install Unpacking libxerces2-java (from .../libxerces2-java_2.11.0-4_all.deb) ...
2073-2014-08-14 14:46:41 INFO install Selecting previously unselected package ant.
2074-2014-08-14 14:46:41 INFO install Unpacking ant (from .../ant_1.8.2-4build1_all.deb) ...
2075-2014-08-14 14:46:41 INFO install Selecting previously unselected package ant-optional.
2076-2014-08-14 14:46:41 INFO install Unpacking ant-optional (from .../ant-optional_1.8.2-4build1_all.deb) ...
2077-2014-08-14 14:46:42 INFO install Selecting previously unselected package libjline-java.
2078-2014-08-14 14:46:42 INFO install Unpacking libjline-java (from .../libjline-java_1.0-1_all.deb) ...
2079-2014-08-14 14:46:42 INFO install Selecting previously unselected package bsh.
2080-2014-08-14 14:46:42 INFO install Unpacking bsh (from .../bsh_2.0b4-12build1_all.deb) ...
2081-2014-08-14 14:46:42 INFO install Selecting previously unselected package bsh-gcj.
2082-2014-08-14 14:46:42 INFO install Unpacking bsh-gcj (from .../bsh-gcj_2.0b4-12build1_amd64.deb) ...
2083-2014-08-14 14:46:42 INFO install Selecting previously unselected package libjaxp1.3-java.
2084-2014-08-14 14:46:42 INFO install Unpacking libjaxp1.3-java (from .../libjaxp1.3-java_1.3.05-2ubuntu2_all.deb) ...
2085-2014-08-14 14:46:42 INFO install Selecting previously unselected package libxalan2-java.
2086-2014-08-14 14:46:42 INFO install Unpacking libxalan2-java (from .../libxalan2-java_2.7.1-7ubuntu0.1_all.deb) ...
2087-2014-08-14 14:46:42 INFO install Selecting previously unselected package libapache-pom-java.
2088-2014-08-14 14:46:42 INFO install Unpacking libapache-pom-java (from .../libapache-pom-java_10-2_all.deb) ...
2089-2014-08-14 14:46:42 INFO install Selecting previously unselected package libbsf-java.
2090-2014-08-14 14:46:42 INFO install Unpacking libbsf-java (from .../libbsf-java_1%3a2.4.0-5_all.deb) ...
2091-2014-08-14 14:46:42 INFO install Selecting previously unselected package libavalon-framework-java.
2092-2014-08-14 14:46:42 INFO install Unpacking libavalon-framework-java (from .../libavalon-framework-java_4.2.0-8_all.deb) ...
2093-2014-08-14 14:46:42 INFO install Selecting previously unselected package libcommons-io-java.
2094-2014-08-14 14:46:42 INFO install Unpacking libcommons-io-java (from .../libcommons-io-java_1.4-4_all.deb) ...
2095-2014-08-14 14:46:42 INFO install Selecting previously unselected package libcommons-parent-java.
2096-2014-08-14 14:46:42 INFO install Unpacking libcommons-parent-java (from .../libcommons-parent-java_22-2_all.deb) ...
2097-2014-08-14 14:46:42 INFO install Selecting previously unselected package libcommons-logging-java.
2098-2014-08-14 14:46:42 INFO install Unpacking libcommons-logging-java (from .../libcommons-logging-java_1.1.1-9_all.deb) ...
2099-2014-08-14 14:46:42 INFO install Selecting previously unselected package unzip.
2100-2014-08-14 14:46:42 INFO install Unpacking unzip (from .../unzip_6.0-4ubuntu2_amd64.deb) ...
2101-2014-08-14 14:46:42 INFO install Selecting previously unselected package java-wrappers.
2102-2014-08-14 14:46:42 INFO install Unpacking java-wrappers (from .../java-wrappers_0.1.24_all.deb) ...
2103-2014-08-14 14:46:42 INFO install Selecting previously unselected package libbatik-java.
2104-2014-08-14 14:46:42 INFO install Unpacking libbatik-java (from .../libbatik-java_1.7.ubuntu-8ubuntu1_all.deb) ...
2105-2014-08-14 14:46:43 INFO install Selecting previously unselected package libxmlgraphics-commons-java.
2106-2014-08-14 14:46:43 INFO install Unpacking libxmlgraphics-commons-java (from .../libxmlgraphics-commons-java_1.4.dfsg-4ubuntu1_all.deb) ...
2107-2014-08-14 14:46:43 INFO install Selecting previously unselected package libfop-java.
2108-2014-08-14 14:46:43 INFO install Unpacking libfop-java (from .../libfop-java_1%3a1.0.dfsg2-6_all.deb) ...
2109-2014-08-14 14:46:43 INFO install Selecting previously unselected package fop.
2110-2014-08-14 14:46:43 INFO install Unpacking fop (from .../fop_1%3a1.0.dfsg2-6_all.deb) ...
2111-2014-08-14 14:46:43 INFO install Selecting previously unselected package gcj-4.6-jre-lib.
2112-2014-08-14 14:46:43 INFO install Unpacking gcj-4.6-jre-lib (from .../gcj-4.6-jre-lib_4.6.3-1ubuntu2_all.deb) ...
2113-2014-08-14 14:46:43 INFO install Selecting previously unselected package hicolor-icon-theme.
2114-2014-08-14 14:46:43 INFO install Unpacking hicolor-icon-theme (from .../hicolor-icon-theme_0.12-1ubuntu2_all.deb) ...
2115-2014-08-14 14:46:43 INFO install Selecting previously unselected package libargs4j-java.
2116-2014-08-14 14:46:43 INFO install Unpacking libargs4j-java (from .../libargs4j-java_2.0.16-2_all.deb) ...
2117-2014-08-14 14:46:43 INFO install Selecting previously unselected package libcommons-codec-java.
2118-2014-08-14 14:46:43 INFO install Unpacking libcommons-codec-java (from .../libcommons-codec-java_1.5-1_all.deb) ...
2119-2014-08-14 14:46:43 INFO install Selecting previously unselected package libjenkins-remoting-java.
2120-2014-08-14 14:46:43 INFO install Unpacking libjenkins-remoting-java (from .../libjenkins-remoting-java_2.4+dfsg-1_all.deb) ...
2121-2014-08-14 14:46:43 INFO install Selecting previously unselected package libjffi-jni.
2122-2014-08-14 14:46:44 INFO install Unpacking libjffi-jni (from .../libjffi-jni_1.0.2-8ubuntu1_amd64.deb) ...
2123-2014-08-14 14:46:44 INFO install Selecting previously unselected package libjffi-java.
2124-2014-08-14 14:46:44 INFO install Unpacking libjffi-java (from .../libjffi-java_1.0.2-8ubuntu1_all.deb) ...
2125-2014-08-14 14:46:44 INFO install Selecting previously unselected package libjna-java.
2126-2014-08-14 14:46:44 INFO install Unpacking libjna-java (from .../libjna-java_3.2.7-4_amd64.deb) ...
2127-2014-08-14 14:46:44 INFO install Selecting previously unselected package libjaffl-java.
2128-2014-08-14 14:46:44 INFO install Unpacking libjaffl-java (from .../libjaffl-java_0.5.4-1_all.deb) ...
2129-2014-08-14 14:46:44 INFO install Selecting previously unselected package libconstantine-java.
2130-2014-08-14 14:46:44 INFO install Unpacking libconstantine-java (from .../libconstantine-java_0.7-3_all.deb) ...
2131-2014-08-14 14:46:44 INFO install Selecting previously unselected package libjnr-posix-java.
2132-2014-08-14 14:46:44 INFO install Unpacking libjnr-posix-java (from .../libjnr-posix-java_1.1.4~git1.8aa26268b-1ubuntu1_all.deb) ...
2133-2014-08-14 14:46:44 INFO install Selecting previously unselected package jenkins-common.
2134-2014-08-14 14:46:44 INFO install Unpacking jenkins-common (from .../jenkins-common_1.424.6+dfsg-1ubuntu0.2_all.deb) ...
2135-2014-08-14 14:46:44 INFO install Selecting previously unselected package jenkins.
2136-2014-08-14 14:46:44 INFO install Unpacking jenkins (from .../jenkins_1.424.6+dfsg-1ubuntu0.2_all.deb) ...
2137-2014-08-14 14:46:44 INFO install Selecting previously unselected package jenkins-cli.
2138-2014-08-14 14:46:44 INFO install Unpacking jenkins-cli (from .../jenkins-cli_1.424.6+dfsg-1ubuntu0.2_all.deb) ...
2139-2014-08-14 14:46:44 INFO install Selecting previously unselected package junit.
2140-2014-08-14 14:46:44 INFO install Unpacking junit (from .../archives/junit_3.8.2-8_all.deb) ...
2141-2014-08-14 14:46:44 INFO install Selecting previously unselected package libhamcrest-java.
2142-2014-08-14 14:46:44 INFO install Unpacking libhamcrest-java (from .../libhamcrest-java_1.1-8_all.deb) ...
2143-2014-08-14 14:46:45 INFO install Selecting previously unselected package junit4.
2144-2014-08-14 14:46:45 INFO install Unpacking junit4 (from .../junit4_4.8.2-2_all.deb) ...
2145-2014-08-14 14:46:45 INFO install Selecting previously unselected package libasm3-java.
2146-2014-08-14 14:46:45 INFO install Unpacking libasm3-java (from .../libasm3-java_3.3.2-1_all.deb) ...
2147-2014-08-14 14:46:45 INFO install Selecting previously unselected package libeasymock-java.
2148-2014-08-14 14:46:45 INFO install Unpacking libeasymock-java (from .../libeasymock-java_2.4+ds1-6_all.deb) ...
2149-2014-08-14 14:46:45 INFO install Selecting previously unselected package libplexus-interpolation-java.
2150-2014-08-14 14:46:45 INFO install Unpacking libplexus-interpolation-java (from .../libplexus-interpolation-java_1.11-3_all.deb) ...
2151-2014-08-14 14:46:45 INFO install Selecting previously unselected package libplexus-utils-java.
2152-2014-08-14 14:46:45 INFO install Unpacking libplexus-utils-java (from .../libplexus-utils-java_1%3a1.5.15-4_all.deb) ...
2153-2014-08-14 14:46:45 INFO install Selecting previously unselected package libmaven-invoker-java.
2154-2014-08-14 14:46:45 INFO install Unpacking libmaven-invoker-java (from .../libmaven-invoker-java_2.0.11-1_all.deb) ...
2155-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcommons-lang-java.
2156-2014-08-14 14:46:45 INFO install Unpacking libcommons-lang-java (from .../libcommons-lang-java_2.6-3ubuntu1_all.deb) ...
2157-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcommons-cli-java.
2158-2014-08-14 14:46:45 INFO install Unpacking libcommons-cli-java (from .../libcommons-cli-java_1.2-3_all.deb) ...
2159-2014-08-14 14:46:45 INFO install Selecting previously unselected package libslf4j-java.
2160-2014-08-14 14:46:45 INFO install Unpacking libslf4j-java (from .../libslf4j-java_1.6.4-1_all.deb) ...
2161-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcommons-beanutils-java.
2162-2014-08-14 14:46:45 INFO install Unpacking libcommons-beanutils-java (from .../libcommons-beanutils-java_1.8.3-2_all.deb) ...
2163-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcommons-collections3-java.
2164-2014-08-14 14:46:45 INFO install Unpacking libcommons-collections3-java (from .../libcommons-collections3-java_3.2.1-5_all.deb) ...
2165-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcommons-digester-java.
2166-2014-08-14 14:46:45 INFO install Unpacking libcommons-digester-java (from .../libcommons-digester-java_1.8.1-3_all.deb) ...
2167-2014-08-14 14:46:45 INFO install Selecting previously unselected package libservlet2.5-java.
2168-2014-08-14 14:46:45 INFO install Unpacking libservlet2.5-java (from .../libservlet2.5-java_6.0.35-1ubuntu3.5_all.deb) ...
2169-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcommons-configuration-java.
2170-2014-08-14 14:46:45 INFO install Unpacking libcommons-configuration-java (from .../libcommons-configuration-java_1.7-1_all.deb) ...
2171-2014-08-14 14:46:45 INFO install Selecting previously unselected package libhttpcore-java.
2172-2014-08-14 14:46:45 INFO install Unpacking libhttpcore-java (from .../libhttpcore-java_4.1.4-1_all.deb) ...
2173-2014-08-14 14:46:45 INFO install Selecting previously unselected package libhttpclient-java.
2174-2014-08-14 14:46:45 INFO install Unpacking libhttpclient-java (from .../libhttpclient-java_4.1.1-1_all.deb) ...
2175-2014-08-14 14:46:46 INFO install Selecting previously unselected package libitext1-java.
2176-2014-08-14 14:46:46 INFO install Unpacking libitext1-java (from .../libitext1-java_1.4-5_all.deb) ...
2177-2014-08-14 14:46:46 INFO install Selecting previously unselected package liblog4j1.2-java.
2178-2014-08-14 14:46:46 INFO install Unpacking liblog4j1.2-java (from .../liblog4j1.2-java_1.2.16-3ubuntu1_all.deb) ...
2179-2014-08-14 14:46:46 INFO install Selecting previously unselected package libclassworlds-java.
2180-2014-08-14 14:46:46 INFO install Unpacking libclassworlds-java (from .../libclassworlds-java_1.1-final-5_all.deb) ...
2181-2014-08-14 14:46:46 INFO install Selecting previously unselected package libplexus-container-default-java.
2182-2014-08-14 14:46:46 INFO install Unpacking libplexus-container-default-java (from .../libplexus-container-default-java_1.0-alpha-9-stable-1-6_all.deb) ...
2183-2014-08-14 14:46:46 INFO install Selecting previously unselected package libjsr305-java.
2184-2014-08-14 14:46:46 INFO install Unpacking libjsr305-java (from .../libjsr305-java_0.1~+svn49-4_all.deb) ...
2185-2014-08-14 14:46:46 INFO install Selecting previously unselected package libgoogle-collections-java.
2186-2014-08-14 14:46:46 INFO install Unpacking libgoogle-collections-java (from .../libgoogle-collections-java_1.0-2_all.deb) ...
2187-2014-08-14 14:46:46 INFO install Selecting previously unselected package libplexus-classworlds-java.
2188-2014-08-14 14:46:46 INFO install Unpacking libplexus-classworlds-java (from .../libplexus-classworlds-java_1.5.0-3_all.deb) ...
2189-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxbean-java.
2190-2014-08-14 14:46:46 INFO install Unpacking libxbean-java (from .../libxbean-java_3.7-4_all.deb) ...
2191-2014-08-14 14:46:46 INFO install Selecting previously unselected package libplexus-containers-java.
2192-2014-08-14 14:46:46 INFO install Unpacking libplexus-containers-java (from .../libplexus-containers-java_1.0~beta3.0.7-5_all.deb) ...
2193-2014-08-14 14:46:46 INFO install Selecting previously unselected package libplexus-i18n-java.
2194-2014-08-14 14:46:46 INFO install Unpacking libplexus-i18n-java (from .../libplexus-i18n-java_1.0-beta-10-3_all.deb) ...
2195-2014-08-14 14:46:46 INFO install Selecting previously unselected package libdoxia-java.
2196-2014-08-14 14:46:46 INFO install Unpacking libdoxia-java (from .../libdoxia-java_1.1.4-1ubuntu3_all.deb) ...
2197-2014-08-14 14:46:46 INFO install Selecting previously unselected package libplexus-build-api-java.
2198-2014-08-14 14:46:46 INFO install Unpacking libplexus-build-api-java (from .../libplexus-build-api-java_0.0.4-4_all.deb) ...
2199-2014-08-14 14:46:46 INFO install Selecting previously unselected package libmodello-java.
2200-2014-08-14 14:46:46 INFO install Unpacking libmodello-java (from .../libmodello-java_1.1-2_all.deb) ...
2201-2014-08-14 14:46:46 INFO install Selecting previously unselected package libplexus-io-java.
2202-2014-08-14 14:46:46 INFO install Unpacking libplexus-io-java (from .../libplexus-io-java_1.0~alpha5-2_all.deb) ...
2203-2014-08-14 14:46:47 INFO install Selecting previously unselected package libplexus-archiver-java.
2204-2014-08-14 14:46:47 INFO install Unpacking libplexus-archiver-java (from .../libplexus-archiver-java_1.0~alpha12-3_all.deb) ...
2205-2014-08-14 14:46:47 INFO install Selecting previously unselected package libplexus-cipher-java.
2206-2014-08-14 14:46:47 INFO install Unpacking libplexus-cipher-java (from .../libplexus-cipher-java_1.5-2_all.deb) ...
2207-2014-08-14 14:46:47 INFO install Selecting previously unselected package libplexus-sec-dispatcher-java.
2208-2014-08-14 14:46:47 INFO install Unpacking libplexus-sec-dispatcher-java (from .../libplexus-sec-dispatcher-java_1.3.1-5_all.deb) ...
2209-2014-08-14 14:46:47 INFO install Selecting previously unselected package libplexus-ant-factory-java.
2210-2014-08-14 14:46:47 INFO install Unpacking libplexus-ant-factory-java (from .../libplexus-ant-factory-java_1.0~alpha2.1-3_all.deb) ...
2211-2014-08-14 14:46:47 INFO install Selecting previously unselected package libplexus-bsh-factory-java.
2212-2014-08-14 14:46:47 INFO install Unpacking libplexus-bsh-factory-java (from .../libplexus-bsh-factory-java_1.0~alpha7-3_all.deb) ...
2213-2014-08-14 14:46:47 INFO install Selecting previously unselected package libplexus-interactivity-api-java.
2214-2014-08-14 14:46:47 INFO install Unpacking libplexus-interactivity-api-java (from .../libplexus-interactivity-api-java_1.0-alpha-6-6_all.deb) ...
2215-2014-08-14 14:46:47 INFO install Selecting previously unselected package libcommons-httpclient-java.
2216-2014-08-14 14:46:47 INFO install Unpacking libcommons-httpclient-java (from .../libcommons-httpclient-java_3.1-10_all.deb) ...
2217-2014-08-14 14:46:47 INFO install Selecting previously unselected package libcommons-net2-java.
2218-2014-08-14 14:46:47 INFO install Unpacking libcommons-net2-java (from .../libcommons-net2-java_2.2-1ubuntu1_all.deb) ...
2219-2014-08-14 14:46:47 INFO install Selecting previously unselected package libjetty-java.
2220-2014-08-14 14:46:47 INFO install Unpacking libjetty-java (from .../libjetty-java_6.1.24-6ubuntu0.12.04.1_all.deb) ...
2221-2014-08-14 14:46:47 INFO install Selecting previously unselected package libjsch-java.
2222-2014-08-14 14:46:47 INFO install Unpacking libjsch-java (from .../libjsch-java_0.1.42-2fakesync1_all.deb) ...
2223-2014-08-14 14:46:47 INFO install Selecting previously unselected package libjsoup-java.
2224-2014-08-14 14:46:47 INFO install Unpacking libjsoup-java (from .../libjsoup-java_1.6.1-2_all.deb) ...
2225-2014-08-14 14:46:47 INFO install Selecting previously unselected package libganymed-ssh2-java.
2226-2014-08-14 14:46:47 INFO install Unpacking libganymed-ssh2-java (from .../libganymed-ssh2-java_250-2_all.deb) ...
2227-2014-08-14 14:46:47 INFO install Selecting previously unselected package libnetbeans-cvsclient-java.
2228-2014-08-14 14:46:47 INFO install Unpacking libnetbeans-cvsclient-java (from .../libnetbeans-cvsclient-java_6.5-2_all.deb) ...
2229-2014-08-14 14:46:48 INFO install Selecting previously unselected package libregexp-java.
2230-2014-08-14 14:46:48 INFO install Unpacking libregexp-java (from .../libregexp-java_1.5-3_all.deb) ...
2231-2014-08-14 14:46:48 INFO install Selecting previously unselected package libmaven-scm-java.
2232-2014-08-14 14:46:48 INFO install Unpacking libmaven-scm-java (from .../libmaven-scm-java_1.3-4_all.deb) ...
2233-2014-08-14 14:46:48 INFO install Selecting previously unselected package libwagon-java.
2234-2014-08-14 14:46:48 INFO install Unpacking libwagon-java (from .../libwagon-java_1.0.0-2ubuntu2_all.deb) ...
2235-2014-08-14 14:46:48 INFO install Selecting previously unselected package libbackport-util-concurrent-java.
2236-2014-08-14 14:46:48 INFO install Unpacking libbackport-util-concurrent-java (from .../libbackport-util-concurrent-java_3.1-3_all.deb) ...
2237-2014-08-14 14:46:48 INFO install Selecting previously unselected package libmaven2-core-java.
2238-2014-08-14 14:46:48 INFO install Unpacking libmaven2-core-java (from .../libmaven2-core-java_2.2.1-8_all.deb) ...
2239-2014-08-14 14:46:48 INFO install Selecting previously unselected package libmaven-plugin-testing-java.
2240-2014-08-14 14:46:48 INFO install Unpacking libmaven-plugin-testing-java (from .../libmaven-plugin-testing-java_1.2-3_all.deb) ...
2241-2014-08-14 14:46:48 INFO install Selecting previously unselected package libmaven-common-artifact-filters-java.
2242-2014-08-14 14:46:48 INFO install Unpacking libmaven-common-artifact-filters-java (from .../libmaven-common-artifact-filters-java_1.2-1_all.deb) ...
2243-2014-08-14 14:46:48 INFO install Selecting previously unselected package libmaven-dependency-tree-java.
2244-2014-08-14 14:46:48 INFO install Unpacking libmaven-dependency-tree-java (from .../libmaven-dependency-tree-java_1.2-4_all.deb) ...
2245-2014-08-14 14:46:48 INFO install Selecting previously unselected package libmaven-enforcer-plugin-java.
2246-2014-08-14 14:46:48 INFO install Unpacking libmaven-enforcer-plugin-java (from .../libmaven-enforcer-plugin-java_1.0-1_all.deb) ...
2247-2014-08-14 14:46:48 INFO install Selecting previously unselected package libanimal-sniffer-java.
2248-2014-08-14 14:46:48 INFO install Unpacking libanimal-sniffer-java (from .../libanimal-sniffer-java_1.7-2_all.deb) ...
2249-2014-08-14 14:46:48 INFO install Selecting previously unselected package libcommons-jexl-java.
2250-2014-08-14 14:46:48 INFO install Unpacking libcommons-jexl-java (from .../libcommons-jexl-java_1.1-3_all.deb) ...
2251-2014-08-14 14:46:49 INFO install Selecting previously unselected package libcommons-jxpath-java.
2252-2014-08-14 14:46:49 INFO install Unpacking libcommons-jxpath-java (from .../libcommons-jxpath-java_1.3-5_all.deb) ...
2253-2014-08-14 14:46:49 INFO install Selecting previously unselected package libcommons-vfs-java.
2254-2014-08-14 14:46:49 INFO install Unpacking libcommons-vfs-java (from .../libcommons-vfs-java_2.0-1ubuntu1_all.deb) ...
2255-2014-08-14 14:46:49 INFO install Selecting previously unselected package libgtk2.0-bin.
2256-2014-08-14 14:46:49 INFO install Unpacking libgtk2.0-bin (from .../libgtk2.0-bin_2.24.10-0ubuntu6.1_amd64.deb) ...
2257-2014-08-14 14:46:49 INFO install Selecting previously unselected package librhino-java.
2258-2014-08-14 14:46:49 INFO install Unpacking librhino-java (from .../librhino-java_1.7R3-5_all.deb) ...
2259-2014-08-14 14:46:49 INFO install Selecting previously unselected package libsaxon-java.
2260-2014-08-14 14:46:49 INFO install Unpacking libsaxon-java (from .../libsaxon-java_1%3a6.5.5-8_all.deb) ...
2261-2014-08-14 14:46:49 INFO install Selecting previously unselected package rhino.
2262-2014-08-14 14:46:49 INFO install Unpacking rhino (from .../archives/rhino_1.7R3-5_all.deb) ...
2263-2014-08-14 14:46:49 INFO install Selecting previously unselected package ttf-dejavu-extra.
2264-2014-08-14 14:46:49 INFO install Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.33-2ubuntu1_all.deb) ...
2265-2014-08-14 14:46:49 INFO install Selecting previously unselected package icedtea-6-jre-cacao.
2266-2014-08-14 14:46:49 INFO install Unpacking icedtea-6-jre-cacao (from .../icedtea-6-jre-cacao_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2267-2014-08-14 14:46:49 INFO install Selecting previously unselected package icedtea-6-jre-jamvm.
2268-2014-08-14 14:46:49 INFO install Unpacking icedtea-6-jre-jamvm (from .../icedtea-6-jre-jamvm_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2269-2014-08-14 14:46:49 INFO install Selecting previously unselected package icedtea-netx-common.
2270-2014-08-14 14:46:49 INFO install Unpacking icedtea-netx-common (from .../icedtea-netx-common_1.2.3-0ubuntu0.12.04.4_all.deb) ...
2271-2014-08-14 14:46:49 INFO install Selecting previously unselected package icedtea-netx.
2272-2014-08-14 14:46:49 INFO install Unpacking icedtea-netx (from .../icedtea-netx_1.2.3-0ubuntu0.12.04.4_amd64.deb) ...
2273-2014-08-14 14:46:49 INFO install Processing triggers for man-db ...
2274-2014-08-14 14:46:50 INFO install Processing triggers for ureadahead ...
2275-2014-08-14 14:46:50 INFO install Setting up libasound2 (1.0.25-1ubuntu10.2) ...
2276-2014-08-14 14:46:50 INFO install Setting up libasyncns0 (0.8-4) ...
2277-2014-08-14 14:46:50 INFO install Setting up libatk1.0-data (2.4.0-0ubuntu1) ...
2278-2014-08-14 14:46:50 INFO install Setting up libatk1.0-0 (2.4.0-0ubuntu1) ...
2279-2014-08-14 14:46:50 INFO install Setting up libgtk2.0-common (2.24.10-0ubuntu6.1) ...
2280-2014-08-14 14:46:50 INFO install Setting up ttf-dejavu-core (2.33-2ubuntu1) ...
2281-2014-08-14 14:46:50 INFO install Setting up fontconfig-config (2.8.0-3ubuntu9.1) ...
2282-2014-08-14 14:46:50 INFO install Setting up libfontconfig1 (2.8.0-3ubuntu9.1) ...
2283-2014-08-14 14:46:50 INFO install Setting up libpixman-1-0 (0.30.2-1ubuntu0.0.0.0.1) ...
2284-2014-08-14 14:46:50 INFO install Setting up libxcb-render0 (1.8.1-1ubuntu0.2) ...
2285-2014-08-14 14:46:50 INFO install Setting up libxcb-shm0 (1.8.1-1ubuntu0.2) ...
2286-2014-08-14 14:46:50 INFO install Setting up libxrender1 (1:0.9.6-2ubuntu0.1) ...
2287-2014-08-14 14:46:51 INFO install Setting up libcairo2 (1.10.2-6.1ubuntu3) ...
2288-2014-08-14 14:46:51 INFO install Setting up libavahi-common-data (0.6.30-5ubuntu2.1) ...
2289-2014-08-14 14:46:51 INFO install Setting up libavahi-common3 (0.6.30-5ubuntu2.1) ...
2290-2014-08-14 14:46:51 INFO install Setting up libavahi-client3 (0.6.30-5ubuntu2.1) ...
2291-2014-08-14 14:46:51 INFO install Setting up libcups2 (1.5.3-0ubuntu8.4) ...
2292-2014-08-14 14:46:51 INFO install Setting up libjpeg-turbo8 (1.1.90+svn733-0ubuntu4.4) ...
2293-2014-08-14 14:46:51 INFO install Setting up libjpeg8 (8c-2ubuntu7) ...
2294-2014-08-14 14:46:51 INFO install Setting up libjasper1 (1.900.1-13) ...
2295-2014-08-14 14:46:51 INFO install Setting up libtiff4 (3.9.5-2ubuntu1.6) ...
2296-2014-08-14 14:46:51 INFO install Setting up libgdk-pixbuf2.0-common (2.26.1-1ubuntu1.1) ...
2297-2014-08-14 14:46:51 INFO install Setting up libgdk-pixbuf2.0-0 (2.26.1-1ubuntu1.1) ...
2298-2014-08-14 14:46:51 INFO install Setting up libthai-data (0.1.16-3) ...
2299-2014-08-14 14:46:51 INFO install Setting up libdatrie1 (0.2.5-3) ...
2300-2014-08-14 14:46:51 INFO install Setting up libthai0 (0.1.16-3) ...
2301-2014-08-14 14:46:51 INFO install Setting up libxft2 (2.2.0-3ubuntu2) ...
2302-2014-08-14 14:46:51 INFO install Setting up fontconfig (2.8.0-3ubuntu9.1) ...
2303-2014-08-14 14:46:51 INFO install Cleaning up old fontconfig caches... done.
2304-2014-08-14 14:46:53 INFO install Regenerating fonts cache... done.
2305-2014-08-14 14:46:53 INFO install Setting up libpango1.0-0 (1.30.0-0ubuntu3.1) ...
2306-2014-08-14 14:46:53 INFO install Setting up libxcomposite1 (1:0.4.3-2build1) ...
2307-2014-08-14 14:46:53 INFO install Setting up libxfixes3 (1:5.0-4ubuntu4.2) ...
2308-2014-08-14 14:46:53 INFO install Setting up libxcursor1 (1:1.1.12-1ubuntu0.1) ...
2309-2014-08-14 14:46:53 INFO install Setting up libxdamage1 (1:1.1.3-2build1) ...
2310-2014-08-14 14:46:53 INFO install Setting up libxi6 (2:1.7.1.901-1ubuntu1~precise1) ...
2311-2014-08-14 14:46:53 INFO install Setting up libxinerama1 (2:1.1.1-3ubuntu0.1) ...
2312-2014-08-14 14:46:53 INFO install Setting up libxrandr2 (2:1.3.2-2ubuntu0.2) ...
2313-2014-08-14 14:46:53 INFO install Setting up shared-mime-info (1.0-0ubuntu4.1) ...
2314-2014-08-14 14:46:54 INFO install Setting up libgtk2.0-0 (2.24.10-0ubuntu6.1) ...
2315-2014-08-14 14:46:54 INFO install Setting up java-common (0.43ubuntu2) ...
2316-2014-08-14 14:46:54 INFO install Setting up tzdata-java (2014e-0ubuntu0.12.04) ...
2317-2014-08-14 14:46:54 INFO install Setting up liblcms2-2 (2.2+git20110628-2ubuntu3.1) ...
2318-2014-08-14 14:46:54 INFO install Setting up libnspr4 (4.9.5-0ubuntu0.12.04.3) ...
2319-2014-08-14 14:46:54 INFO install Setting up libnss3 (3.15.4-0ubuntu0.12.04.2) ...
2320-2014-08-14 14:46:54 INFO install Setting up libnss3-1d (3.15.4-0ubuntu0.12.04.2) ...
2321-2014-08-14 14:46:54 INFO install Setting up libgif4 (4.1.6-9ubuntu1) ...
2322-2014-08-14 14:46:54 INFO install Setting up libjson0 (0.9-1ubuntu1.1) ...
2323-2014-08-14 14:46:54 INFO install Setting up libogg0 (1.2.2~dfsg-1ubuntu1) ...
2324-2014-08-14 14:46:54 INFO install Setting up libflac8 (1.2.1-6) ...
2325-2014-08-14 14:46:54 INFO install Setting up libvorbis0a (1.3.2-1ubuntu3) ...
2326-2014-08-14 14:46:54 INFO install Setting up libvorbisenc2 (1.3.2-1ubuntu3) ...
2327-2014-08-14 14:46:54 INFO install Setting up libsndfile1 (1.0.25-4) ...
2328-2014-08-14 14:46:54 INFO install Setting up libpulse0 (1:1.1-0ubuntu15.4) ...
2329-2014-08-14 14:46:54 INFO install Setting up x11-common (1:7.6+12ubuntu2) ...
2330-2014-08-14 14:46:54 INFO install Setting up libxtst6 (2:1.2.0-4ubuntu0.1) ...
2331-2014-08-14 14:46:54 INFO install Setting up libgcj-common (1:4.6.3-1ubuntu5) ...
2332-2014-08-14 14:46:54 INFO install Setting up gcj-4.6-base (4.6.3-1ubuntu2) ...
2333-2014-08-14 14:46:54 INFO install Setting up libgcj12 (4.6.3-1ubuntu2) ...
2334-2014-08-14 14:46:54 INFO install Setting up libgcj-bc (4.6.3-1ubuntu5) ...
2335-2014-08-14 14:46:54 INFO install Setting up libice6 (2:1.0.7-2build1) ...
2336-2014-08-14 14:46:54 INFO install Setting up libsm6 (2:1.2.0-2build1) ...
2337-2014-08-14 14:46:54 INFO install Setting up libxt6 (1:1.1.1-2ubuntu0.1) ...
2338-2014-08-14 14:46:54 INFO install Setting up libxml-commons-resolver1.1-java (1.2-7) ...
2339-2014-08-14 14:46:54 INFO install Setting up libxml-commons-external-java (1.4.01-2) ...
2340-2014-08-14 14:46:54 INFO install Setting up libxerces2-java (2.11.0-4) ...
2341-2014-08-14 14:46:54 INFO install Setting up libjline-java (1.0-1) ...
2342-2014-08-14 14:46:54 INFO install Setting up libjaxp1.3-java (1.3.05-2ubuntu2) ...
2343-2014-08-14 14:46:54 INFO install Setting up libxalan2-java (2.7.1-7ubuntu0.1) ...
2344-2014-08-14 14:46:54 INFO install Setting up libapache-pom-java (10-2) ...
2345-2014-08-14 14:46:54 INFO install Setting up libbsf-java (1:2.4.0-5) ...
2346-2014-08-14 14:46:54 INFO install Setting up libavalon-framework-java (4.2.0-8) ...
2347-2014-08-14 14:46:54 INFO install Setting up libcommons-io-java (1.4-4) ...
2348-2014-08-14 14:46:54 INFO install Setting up libcommons-parent-java (22-2) ...
2349-2014-08-14 14:46:54 INFO install Setting up libcommons-logging-java (1.1.1-9) ...
2350-2014-08-14 14:46:54 INFO install Setting up unzip (6.0-4ubuntu2) ...
2351-2014-08-14 14:46:54 INFO install Setting up java-wrappers (0.1.24) ...
2352-2014-08-14 14:46:54 INFO install Setting up libxmlgraphics-commons-java (1.4.dfsg-4ubuntu1) ...
2353-2014-08-14 14:46:54 INFO install Setting up gcj-4.6-jre-lib (4.6.3-1ubuntu2) ...
2354-2014-08-14 14:46:54 INFO install Setting up hicolor-icon-theme (0.12-1ubuntu2) ...
2355-2014-08-14 14:46:55 INFO install Setting up libcommons-codec-java (1.5-1) ...
2356-2014-08-14 14:46:55 INFO install Setting up libjffi-jni (1.0.2-8ubuntu1) ...
2357-2014-08-14 14:46:55 INFO install Setting up libjffi-java (1.0.2-8ubuntu1) ...
2358-2014-08-14 14:46:55 INFO install Setting up libjna-java (3.2.7-4) ...
2359-2014-08-14 14:46:55 INFO install Setting up libjaffl-java (0.5.4-1) ...
2360-2014-08-14 14:46:55 INFO install Setting up junit (3.8.2-8) ...
2361-2014-08-14 14:46:55 INFO install Setting up libhamcrest-java (1.1-8) ...
2362-2014-08-14 14:46:55 INFO install Setting up libasm3-java (3.3.2-1) ...
2363-2014-08-14 14:46:55 INFO install Setting up libeasymock-java (2.4+ds1-6) ...
2364-2014-08-14 14:46:55 INFO install Setting up libplexus-interpolation-java (1.11-3) ...
2365-2014-08-14 14:46:55 INFO install Setting up libplexus-utils-java (1:1.5.15-4) ...
2366-2014-08-14 14:46:55 INFO install Setting up libmaven-invoker-java (2.0.11-1) ...
2367-2014-08-14 14:46:55 INFO install Setting up libcommons-lang-java (2.6-3ubuntu1) ...
2368-2014-08-14 14:46:55 INFO install Setting up libcommons-cli-java (1.2-3) ...
2369-2014-08-14 14:46:55 INFO install Setting up libslf4j-java (1.6.4-1) ...
2370-2014-08-14 14:46:55 INFO install Setting up libcommons-beanutils-java (1.8.3-2) ...
2371-2014-08-14 14:46:55 INFO install Setting up libcommons-collections3-java (3.2.1-5) ...
2372-2014-08-14 14:46:55 INFO install Setting up libcommons-digester-java (1.8.1-3) ...
2373-2014-08-14 14:46:55 INFO install Setting up libservlet2.5-java (6.0.35-1ubuntu3.5) ...
2374-2014-08-14 14:46:55 INFO install Setting up libcommons-configuration-java (1.7-1) ...
2375-2014-08-14 14:46:55 INFO install Setting up libhttpcore-java (4.1.4-1) ...
2376-2014-08-14 14:46:55 INFO install Setting up libhttpclient-java (4.1.1-1) ...
2377-2014-08-14 14:46:55 INFO install Setting up libitext1-java (1.4-5) ...
2378-2014-08-14 14:46:55 INFO install Setting up liblog4j1.2-java (1.2.16-3ubuntu1) ...
2379-2014-08-14 14:46:55 INFO install Setting up libclassworlds-java (1.1-final-5) ...
2380-2014-08-14 14:46:55 INFO install Setting up libplexus-container-default-java (1.0-alpha-9-stable-1-6) ...
2381-2014-08-14 14:46:55 INFO install Setting up libjsr305-java (0.1~+svn49-4) ...
2382-2014-08-14 14:46:55 INFO install Setting up libgoogle-collections-java (1.0-2) ...
2383-2014-08-14 14:46:55 INFO install Setting up libplexus-classworlds-java (1.5.0-3) ...
2384-2014-08-14 14:46:55 INFO install Setting up libxbean-java (3.7-4) ...
2385-2014-08-14 14:46:55 INFO install Setting up libplexus-containers-java (1.0~beta3.0.7-5) ...
2386-2014-08-14 14:46:55 INFO install Setting up libplexus-i18n-java (1.0-beta-10-3) ...
2387-2014-08-14 14:46:55 INFO install Setting up libplexus-build-api-java (0.0.4-4) ...
2388-2014-08-14 14:46:55 INFO install Setting up libmodello-java (1.1-2) ...
2389-2014-08-14 14:46:55 INFO install Setting up libplexus-io-java (1.0~alpha5-2) ...
2390-2014-08-14 14:46:55 INFO install Setting up libplexus-archiver-java (1.0~alpha12-3) ...
2391-2014-08-14 14:46:55 INFO install Setting up libplexus-cipher-java (1.5-2) ...
2392-2014-08-14 14:46:55 INFO install Setting up libplexus-sec-dispatcher-java (1.3.1-5) ...
2393-2014-08-14 14:46:55 INFO install Setting up libplexus-ant-factory-java (1.0~alpha2.1-3) ...
2394-2014-08-14 14:46:55 INFO install Setting up libplexus-interactivity-api-java (1.0-alpha-6-6) ...
2395-2014-08-14 14:46:55 INFO install Setting up libcommons-httpclient-java (3.1-10) ...
2396-2014-08-14 14:46:55 INFO install Setting up libcommons-net2-java (2.2-1ubuntu1) ...
2397-2014-08-14 14:46:55 INFO install Setting up libjetty-java (6.1.24-6ubuntu0.12.04.1) ...
2398-2014-08-14 14:46:55 INFO install Setting up libjsch-java (0.1.42-2fakesync1) ...
2399-2014-08-14 14:46:55 INFO install Setting up libjsoup-java (1.6.1-2) ...
2400-2014-08-14 14:46:55 INFO install Setting up libganymed-ssh2-java (250-2) ...
2401-2014-08-14 14:46:55 INFO install Setting up libnetbeans-cvsclient-java (6.5-2) ...
2402-2014-08-14 14:46:55 INFO install Setting up libregexp-java (1.5-3) ...
2403-2014-08-14 14:46:55 INFO install Setting up libbackport-util-concurrent-java (3.1-3) ...
2404-2014-08-14 14:46:55 INFO install Setting up libcommons-jexl-java (1.1-3) ...
2405-2014-08-14 14:46:55 INFO install Setting up libcommons-jxpath-java (1.3-5) ...
2406-2014-08-14 14:46:55 INFO install Setting up libcommons-vfs-java (2.0-1ubuntu1) ...
2407-2014-08-14 14:46:55 INFO install Setting up libgtk2.0-bin (2.24.10-0ubuntu6.1) ...
2408-2014-08-14 14:46:55 INFO install Setting up librhino-java (1.7R3-5) ...
2409-2014-08-14 14:46:55 INFO install Setting up libsaxon-java (1:6.5.5-8) ...
2410-2014-08-14 14:46:55 INFO install Setting up ttf-dejavu-extra (2.33-2ubuntu1) ...
2411-2014-08-14 14:46:55 INFO install Setting up icedtea-netx-common (1.2.3-0ubuntu0.12.04.4) ...
2412-2014-08-14 14:46:55 INFO install Setting up libmaven-scm-java (1.3-4) ...
2413-2014-08-14 14:46:55 INFO install Setting up openjdk-6-jre-headless (6b32-1.13.4-4ubuntu0.12.04.2) ...
2414-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/java to provide /usr/bin/java (java) in auto mode.
2415-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode.
2416-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode.
2417-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode.
2418-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode.
2419-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode.
2420-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/orbd to provide /usr/bin/orbd (orbd) in auto mode.
2421-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/servertool to provide /usr/bin/servertool (servertool) in auto mode.
2422-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/tnameserv to provide /usr/bin/tnameserv (tnameserv) in auto mode.
2423-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode.
2424-2014-08-14 14:46:56 INFO install Setting up default-jre-headless (1:1.6-43ubuntu2) ...
2425-2014-08-14 14:46:56 INFO install Setting up openjdk-6-jre (6b32-1.13.4-4ubuntu0.12.04.2) ...
2426-2014-08-14 14:46:56 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/policytool to provide /usr/bin/policytool (policytool) in auto mode.
2427-2014-08-14 14:46:56 INFO install Setting up libatk-wrapper-java (0.30.4-0ubuntu2) ...
2428-2014-08-14 14:46:56 INFO install Setting up ant (1.8.2-4build1) ...
2429-2014-08-14 14:46:56 INFO install Setting up ant-optional (1.8.2-4build1) ...
2430-2014-08-14 14:46:56 INFO install Setting up bsh (2.0b4-12build1) ...
2431-2014-08-14 14:46:56 INFO install Setting up bsh-gcj (2.0b4-12build1) ...
2432-2014-08-14 14:46:56 INFO install Setting up libbatik-java (1.7.ubuntu-8ubuntu1) ...
2433-2014-08-14 14:46:56 INFO install Setting up libfop-java (1:1.0.dfsg2-6) ...
2434-2014-08-14 14:46:56 INFO install Setting up fop (1:1.0.dfsg2-6) ...
2435-2014-08-14 14:46:56 INFO install Setting up libargs4j-java (2.0.16-2) ...
2436-2014-08-14 14:46:56 INFO install Setting up libjenkins-remoting-java (2.4+dfsg-1) ...
2437-2014-08-14 14:46:56 INFO install Setting up libconstantine-java (0.7-3) ...
2438-2014-08-14 14:46:56 INFO install Setting up libjnr-posix-java (1.1.4~git1.8aa26268b-1ubuntu1) ...
2439-2014-08-14 14:46:56 INFO install Setting up jenkins-common (1.424.6+dfsg-1ubuntu0.2) ...
2440-2014-08-14 14:46:56 INFO install Setting up jenkins (1.424.6+dfsg-1ubuntu0.2) ...
2441-2014-08-14 14:46:56 INFO install jenkins start/running, process 7751
2442-2014-08-14 14:46:56 INFO install Setting up jenkins-cli (1.424.6+dfsg-1ubuntu0.2) ...
2443-2014-08-14 14:46:56 INFO install Setting up junit4 (4.8.2-2) ...
2444-2014-08-14 14:46:56 INFO install Setting up libdoxia-java (1.1.4-1ubuntu3) ...
2445-2014-08-14 14:46:56 INFO install Setting up libplexus-bsh-factory-java (1.0~alpha7-3) ...
2446-2014-08-14 14:46:56 INFO install Setting up libwagon-java (1.0.0-2ubuntu2) ...
2447-2014-08-14 14:46:56 INFO install Setting up rhino (1.7R3-5) ...
2448-2014-08-14 14:46:56 INFO install update-alternatives: using /usr/bin/rhino to provide /usr/bin/js (js) in auto mode.
2449-2014-08-14 14:46:56 INFO install Setting up icedtea-6-jre-cacao (6b32-1.13.4-4ubuntu0.12.04.2) ...
2450-2014-08-14 14:46:56 INFO install Setting up icedtea-6-jre-jamvm (6b32-1.13.4-4ubuntu0.12.04.2) ...
2451-2014-08-14 14:46:56 INFO install Setting up icedtea-netx (1.2.3-0ubuntu0.12.04.4) ...
2452-2014-08-14 14:46:56 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/javaws to provide /usr/bin/javaws (javaws) in auto mode.
2453-2014-08-14 14:46:56 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/itweb-settings to provide /usr/bin/itweb-settings (itweb-settings) in auto mode.
2454-2014-08-14 14:46:56 INFO install Setting up ca-certificates-java (20110912ubuntu6) ...
2455-2014-08-14 14:46:57 INFO install Adding debian:Comodo_Secure_Services_root.pem
2456-2014-08-14 14:46:57 INFO install Adding debian:Baltimore_CyberTrust_Root.pem
2457-2014-08-14 14:46:57 INFO install Adding debian:SecureSign_RootCA11.pem
2458-2014-08-14 14:46:57 INFO install Adding debian:Sonera_Class_2_Root_CA.pem
2459-2014-08-14 14:46:57 INFO install Adding debian:DST_ACES_CA_X6.pem
2460-2014-08-14 14:46:57 INFO install Adding debian:Comodo_AAA_Services_root.pem
2461-2014-08-14 14:46:57 INFO install Adding debian:Staat_der_Nederlanden_Root_CA.pem
2462-2014-08-14 14:46:57 INFO install Adding debian:CA_Disig.pem
2463-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_3_Root_CA.pem
2464-2014-08-14 14:46:57 INFO install Adding debian:EC-ACC.pem
2465-2014-08-14 14:46:57 INFO install Adding debian:XRamp_Global_CA_Root.pem
2466-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
2467-2014-08-14 14:46:57 INFO install Adding debian:DST_Root_CA_X3.pem
2468-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Universal_CA_2.pem
2469-2014-08-14 14:46:57 INFO install Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
2470-2014-08-14 14:46:57 INFO install Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem
2471-2014-08-14 14:46:57 INFO install Adding debian:CA_Disig_Root_R2.pem
2472-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_External_Root.pem
2473-2014-08-14 14:46:57 INFO install Adding debian:TC_TrustCenter_Universal_CA_I.pem
2474-2014-08-14 14:46:57 INFO install Adding debian:DigiCert_Global_Root_CA.pem
2475-2014-08-14 14:46:57 INFO install Adding debian:certSIGN_ROOT_CA.pem
2476-2014-08-14 14:46:57 INFO install Adding debian:ACEDICOM_Root.pem
2477-2014-08-14 14:46:57 INFO install Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
2478-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_Qualified_Certificates_Root.pem
2479-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Primary_Certification_Authority_-_G2.pem
2480-2014-08-14 14:46:57 INFO install Adding debian:S-TRUST_Authentication_and_Encryption_Root_CA_2005_PN.pem
2481-2014-08-14 14:46:57 INFO install Adding debian:SecureTrust_CA.pem
2482-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F??tan??s??tv??ny.pem. Message:
2483-2014-08-14 14:46:57 INFO install /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F??tan??s??tv??ny.pem (No such file or directory)
2484-2014-08-14 14:46:57 INFO install Adding debian:cert-ec2.pem
2485-2014-08-14 14:46:57 INFO install Adding debian:Network_Solutions_Certificate_Authority.pem
2486-2014-08-14 14:46:57 INFO install Adding debian:GlobalSign_Root_CA_-_R2.pem
2487-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Global_CA.pem
2488-2014-08-14 14:46:57 INFO install Adding debian:ValiCert_Class_2_VA.pem
2489-2014-08-14 14:46:57 INFO install Adding debian:Security_Communication_RootCA2.pem
2490-2014-08-14 14:46:57 INFO install Adding debian:thawte_Primary_Root_CA_-_G3.pem
2491-2014-08-14 14:46:57 INFO install Adding debian:Sonera_Class_1_Root_CA.pem
2492-2014-08-14 14:46:57 INFO install Adding debian:CNNIC_ROOT.pem
2493-2014-08-14 14:46:57 INFO install Adding debian:thawte_Primary_Root_CA_-_G2.pem
2494-2014-08-14 14:46:57 INFO install Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem
2495-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_Low-Value_Services_Root.pem
2496-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_2_CA_1.pem
2497-2014-08-14 14:46:57 INFO install Adding debian:Izenpe.com.pem
2498-2014-08-14 14:46:57 INFO install Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
2499-2014-08-14 14:46:57 INFO install Adding debian:Thawte_Premium_Server_CA.pem
2500-2014-08-14 14:46:57 INFO install Adding debian:Actalis_Authentication_Root_CA.pem
2501-2014-08-14 14:46:57 INFO install Adding debian:Secure_Global_CA.pem
2502-2014-08-14 14:46:57 INFO install Adding debian:StartCom_Certification_Authority_2.pem
2503-2014-08-14 14:46:57 INFO install Adding debian:Cybertrust_Global_Root.pem
2504-2014-08-14 14:46:57 INFO install Adding debian:Wells_Fargo_Root_CA.pem
2505-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_4_Public_Primary_Certification_Authority_-_G3.pem
2506-2014-08-14 14:46:57 INFO install Adding debian:COMODO_Certification_Authority.pem
2507-2014-08-14 14:46:57 INFO install Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem
2508-2014-08-14 14:46:57 INFO install Adding debian:GlobalSign_Root_CA.pem
2509-2014-08-14 14:46:57 INFO install Adding debian:Digital_Signature_Trust_Co._Global_CA_3.pem
2510-2014-08-14 14:46:57 INFO install Adding debian:StartCom_Certification_Authority_G2.pem
2511-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority_-_G2.pem
2512-2014-08-14 14:46:57 INFO install Adding debian:A-Trust-nQual-03.pem
2513-2014-08-14 14:46:57 INFO install Adding debian:Equifax_Secure_eBusiness_CA_1.pem
2514-2014-08-14 14:46:57 INFO install Adding debian:Security_Communication_EV_RootCA1.pem
2515-2014-08-14 14:46:57 INFO install Adding debian:Global_Chambersign_Root_-_2008.pem
2516-2014-08-14 14:46:57 INFO install Adding debian:T-TeleSec_GlobalRoot_Class_3.pem
2517-2014-08-14 14:46:57 INFO install Adding debian:Root_CA_Generalitat_Valenciana.pem
2518-2014-08-14 14:46:57 INFO install Adding debian:E-Guven_Kok_Elektronik_Sertifika_Hizmet_Saglayicisi.pem
2519-2014-08-14 14:46:57 INFO install Adding debian:TDC_Internet_Root_CA.pem
2520-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Primary_Certification_Authority.pem
2521-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_2.pem
2522-2014-08-14 14:46:57 INFO install Adding debian:GlobalSign_Root_CA_-_R3.pem
2523-2014-08-14 14:46:57 INFO install Adding debian:UTN_DATACorp_SGC_Root_CA.pem
2524-2014-08-14 14:46:57 INFO install Adding debian:DigiCert_Assured_ID_Root_CA.pem
2525-2014-08-14 14:46:57 INFO install Adding debian:StartCom_Certification_Authority.pem
2526-2014-08-14 14:46:57 INFO install Adding debian:SwissSign_Silver_CA_-_G2.pem
2527-2014-08-14 14:46:57 INFO install Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
2528-2014-08-14 14:46:57 INFO install Adding debian:Juur-SK.pem
2529-2014-08-14 14:46:57 INFO install Adding debian:SwissSign_Gold_CA_-_G2.pem
2530-2014-08-14 14:46:57 INFO install Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem
2531-2014-08-14 14:46:57 INFO install Adding debian:Camerfirma_Chambers_of_Commerce_Root.pem
2532-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
2533-2014-08-14 14:46:57 INFO install Adding debian:thawte_Primary_Root_CA.pem
2534-2014-08-14 14:46:57 INFO install Adding debian:Taiwan_GRCA.pem
2535-2014-08-14 14:46:57 INFO install Adding debian:Firmaprofesional_Root_CA.pem
2536-2014-08-14 14:46:57 INFO install Adding debian:NetLock_Express_=Class_C=_Root.pem
2537-2014-08-14 14:46:57 INFO install Adding debian:Certum_Trusted_Network_CA.pem
2538-2014-08-14 14:46:57 INFO install Adding debian:TWCA_Root_Certification_Authority.pem
2539-2014-08-14 14:46:57 INFO install Adding debian:Certplus_Class_2_Primary_CA.pem
2540-2014-08-14 14:46:57 INFO install Adding debian:AffirmTrust_Premium.pem
2541-2014-08-14 14:46:57 INFO install Adding debian:TURKTRUST_Certificate_Services_Provider_Root_2.pem
2542-2014-08-14 14:46:57 INFO install Adding debian:Microsec_e-Szigno_Root_CA_2009.pem
2543-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_Public_Services_Root.pem
2544-2014-08-14 14:46:57 INFO install Adding debian:IGC_A.pem
2545-2014-08-14 14:46:57 INFO install Adding debian:Digital_Signature_Trust_Co._Global_CA_1.pem
2546-2014-08-14 14:46:57 INFO install Adding debian:Hongkong_Post_Root_CA_1.pem
2547-2014-08-14 14:46:57 INFO install Adding debian:America_Online_Root_Certification_Authority_1.pem
2548-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
2549-2014-08-14 14:46:57 INFO install Adding debian:Deutsche_Telekom_Root_CA_2.pem
2550-2014-08-14 14:46:57 INFO install Adding debian:GTE_CyberTrust_Global_Root.pem
2551-2014-08-14 14:46:57 INFO install Adding debian:Go_Daddy_Class_2_CA.pem
2552-2014-08-14 14:46:57 INFO install Adding debian:SwissSign_Platinum_CA_-_G2.pem
2553-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa??lay??c??s??.pem. Message:
2554-2014-08-14 14:46:57 INFO install /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa??lay??c??s??.pem (No such file or directory)
2555-2014-08-14 14:46:57 INFO install Adding debian:Chambers_of_Commerce_Root_-_2008.pem
2556-2014-08-14 14:46:57 INFO install Adding debian:ComSign_CA.pem
2557-2014-08-14 14:46:57 INFO install Adding debian:America_Online_Root_Certification_Authority_2.pem
2558-2014-08-14 14:46:57 INFO install Adding debian:Security_Communication_Root_CA.pem
2559-2014-08-14 14:46:57 INFO install Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem
2560-2014-08-14 14:46:57 INFO install Adding debian:PSCProcert.pem
2561-2014-08-14 14:46:57 INFO install Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem
2562-2014-08-14 14:46:57 INFO install Adding debian:ApplicationCA_-_Japanese_Government.pem
2563-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/T??B??TAK_UEKAE_K??k_Sertifika_Hizmet_Sa??lay??c??s??_-_S??r??m_3.pem. Message:
2564-2014-08-14 14:46:57 INFO install /etc/ssl/certs/T??B??TAK_UEKAE_K??k_Sertifika_Hizmet_Sa??lay??c??s??_-_S??r??m_3.pem (No such file or directory)
2565-2014-08-14 14:46:57 INFO install Adding debian:AffirmTrust_Commercial.pem
2566-2014-08-14 14:46:57 INFO install Adding debian:RSA_Security_2048_v3.pem
2567-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_2_Root_CA.pem
2568-2014-08-14 14:46:57 INFO install Adding debian:Swisscom_Root_EV_CA_2.pem
2569-2014-08-14 14:46:57 INFO install Adding debian:Staat_der_Nederlanden_Root_CA_-_G2.pem
2570-2014-08-14 14:46:57 INFO install Adding debian:spi-cacert-2008.pem
2571-2014-08-14 14:46:57 INFO install Adding debian:Entrust.net_Secure_Server_CA.pem
2572-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/AC_Ra??z_Certic??mara_S.A..pem. Message:
2573-2014-08-14 14:46:57 INFO install /etc/ssl/certs/AC_Ra??z_Certic??mara_S.A..pem (No such file or directory)
2574-2014-08-14 14:46:57 INFO install Adding debian:Trustis_FPS_Root_CA.pem
2575-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Global_CA_2.pem
2576-2014-08-14 14:46:57 INFO install Adding debian:TC_TrustCenter_Class_2_CA_II.pem
2577-2014-08-14 14:46:57 INFO install Adding debian:ComSign_Secured_CA.pem
2578-2014-08-14 14:46:58 INFO install Adding debian:OISTE_WISeKey_Global_Root_GA_CA.pem
2579-2014-08-14 14:46:58 INFO install Adding debian:AffirmTrust_Networking.pem
2580-2014-08-14 14:46:58 INFO install Adding debian:Swisscom_Root_CA_2.pem
2581-2014-08-14 14:46:58 INFO install Adding debian:TC_TrustCenter_Class_3_CA_II.pem
2582-2014-08-14 14:46:58 INFO install Adding debian:EE_Certification_Centre_Root_CA.pem
2583-2014-08-14 14:46:58 INFO install Adding debian:TDC_OCES_Root_CA.pem
2584-2014-08-14 14:46:58 INFO install Adding debian:TURKTRUST_Certificate_Services_Provider_Root_1.pem
2585-2014-08-14 14:46:58 INFO install Adding debian:Entrust_Root_Certification_Authority.pem
2586-2014-08-14 14:46:58 INFO install Adding debian:Visa_eCommerce_Root.pem
2587-2014-08-14 14:46:58 INFO install Adding debian:Verisign_Class_2_Public_Primary_Certification_Authority_-_G2.pem
2588-2014-08-14 14:46:58 INFO install Adding debian:China_Internet_Network_Information_Center_EV_Certificates_Root.pem
2589-2014-08-14 14:46:58 INFO install Adding debian:Swisscom_Root_CA_1.pem
2590-2014-08-14 14:46:58 INFO install Adding debian:RSA_Root_Certificate_1.pem
2591-2014-08-14 14:46:58 INFO install Adding debian:Equifax_Secure_CA.pem
2592-2014-08-14 14:46:58 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G2.pem
2593-2014-08-14 14:46:58 INFO install Adding debian:NetLock_Notary_=Class_A=_Root.pem
2594-2014-08-14 14:46:58 INFO install Adding debian:Equifax_Secure_Global_eBusiness_CA.pem
2595-2014-08-14 14:46:58 INFO install Adding debian:Certigna.pem
2596-2014-08-14 14:46:58 INFO install Adding debian:Certum_Root_CA.pem
2597-2014-08-14 14:46:58 INFO install Adding debian:Starfield_Class_2_CA.pem
2598-2014-08-14 14:46:58 INFO install Adding debian:TURKTRUST_Certificate_Services_Provider_Root_2007.pem
2599-2014-08-14 14:46:58 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority.pem
2600-2014-08-14 14:46:58 INFO install Adding debian:GeoTrust_Universal_CA.pem
2601-2014-08-14 14:46:58 INFO install Adding debian:QuoVadis_Root_CA_2.pem
2602-2014-08-14 14:46:58 INFO install Adding debian:Comodo_Trusted_Services_root.pem
2603-2014-08-14 14:46:58 INFO install Adding debian:ValiCert_Class_1_VA.pem
2604-2014-08-14 14:46:58 INFO install Adding debian:AffirmTrust_Premium_ECC.pem
2605-2014-08-14 14:46:58 INFO install Adding debian:QuoVadis_Root_CA_3.pem
2606-2014-08-14 14:46:58 INFO install Adding debian:NetLock_Business_=Class_B=_Root.pem
2607-2014-08-14 14:46:58 INFO install Adding debian:ePKI_Root_Certification_Authority.pem
2608-2014-08-14 14:46:58 INFO install Adding debian:GeoTrust_Primary_Certification_Authority_-_G3.pem
2609-2014-08-14 14:46:58 INFO install Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority.pem
2610-2014-08-14 14:46:58 INFO install Adding debian:Buypass_Class_3_CA_1.pem
2611-2014-08-14 14:46:58 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/Certinomis_-_Autorit??_Racine.pem. Message:
2612-2014-08-14 14:46:58 INFO install /etc/ssl/certs/Certinomis_-_Autorit??_Racine.pem (No such file or directory)
2613-2014-08-14 14:46:58 INFO install Adding debian:UTN_USERFirst_Email_Root_CA.pem
2614-2014-08-14 14:46:58 INFO install Adding debian:QuoVadis_Root_CA.pem
2615-2014-08-14 14:46:58 INFO install Adding debian:NetLock_Qualified_=Class_QA=_Root.pem
2616-2014-08-14 14:46:58 INFO install Adding debian:CA_Disig_Root_R1.pem
2617-2014-08-14 14:46:58 INFO install Adding debian:Thawte_Server_CA.pem
2618-2014-08-14 14:46:58 INFO install Adding debian:Camerfirma_Global_Chambersign_Root.pem
2619-2014-08-14 14:46:58 INFO install Adding debian:COMODO_ECC_Certification_Authority.pem
2620-2014-08-14 14:46:58 INFO install Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
2621-2014-08-14 14:46:58 INFO install Adding debian:VeriSign_Universal_Root_Certification_Authority.pem
2622-2014-08-14 14:46:58 INFO install Adding debian:WellsSecure_Public_Root_Certificate_Authority.pem
2623-2014-08-14 14:46:58 INFO install Adding debian:Microsec_e-Szigno_Root_CA.pem
2624-2014-08-14 14:46:58 INFO install Adding debian:UTN_USERFirst_Hardware_Root_CA.pem
2625-2014-08-14 14:46:58 INFO install done.
2626-2014-08-14 14:46:58 INFO install Setting up openjdk-6-jre-lib (6b32-1.13.4-4ubuntu0.12.04.2) ...
2627-2014-08-14 14:46:58 INFO install Setting up libatk-wrapper-java-jni (0.30.4-0ubuntu2) ...
2628-2014-08-14 14:46:58 INFO install Setting up libmaven2-core-java (2.2.1-8) ...
2629-2014-08-14 14:46:58 INFO install Setting up libmaven-plugin-testing-java (1.2-3) ...
2630-2014-08-14 14:46:58 INFO install Setting up libmaven-common-artifact-filters-java (1.2-1) ...
2631-2014-08-14 14:46:58 INFO install Setting up libmaven-dependency-tree-java (1.2-4) ...
2632-2014-08-14 14:46:58 INFO install Setting up libmaven-enforcer-plugin-java (1.0-1) ...
2633-2014-08-14 14:46:58 INFO install Setting up libanimal-sniffer-java (1.7-2) ...
2634-2014-08-14 14:46:58 INFO install Processing triggers for libc-bin ...
2635-2014-08-14 14:46:58 INFO install ldconfig deferred processing now taking place
2636-2014-08-14 14:46:58 INFO juju-log Configuring user for jenkins...
2637-2014-08-14 14:46:58 INFO juju-log Bootstrapping secure initial configuration in Jenkins...
2638-2014-08-14 14:46:58 INFO juju-log Installing plugins ()
2639-2014-08-14 14:46:58 INFO install /var/lib/jenkins/plugins /var/lib/juju/agents/unit-jenkins-0/charm
2640-2014-08-14 14:46:58 INFO install /var/lib/juju/agents/unit-jenkins-0/charm
2641-2014-08-14 14:46:58 INFO juju-log Restarting jenkins to pickup configuration changes
2642-2014-08-14 14:46:58 INFO install jenkins stop/waiting
2643-2014-08-14 14:46:59 INFO install jenkins start/running, process 8537
2644-2014-08-14 14:46:59 INFO juju-log Installing python-jenkins...
2645-2014-08-14 14:46:59 INFO install Selecting previously unselected package python-jenkins.
2646-2014-08-14 14:46:59 INFO install (Reading database ... 53876 files and directories currently installed.)
2647-2014-08-14 14:46:59 INFO install Unpacking python-jenkins (from .../python-jenkins_0.2-0ubuntu2_amd64.deb) ...
2648-2014-08-14 14:47:00 INFO install Setting up python-jenkins (0.2-0ubuntu2) ...
2649-2014-08-14 14:47:00 INFO juju-log Installing tools...
2650-2014-08-14 14:47:02 INFO install Selecting previously unselected package libgomp1.
2651-2014-08-14 14:47:02 INFO install (Reading database ... 53885 files and directories currently installed.)
2652-2014-08-14 14:47:02 INFO install Unpacking libgomp1 (from .../libgomp1_4.6.3-1ubuntu5_amd64.deb) ...
2653-2014-08-14 14:47:02 INFO install Selecting previously unselected package liblua5.1-0.
2654-2014-08-14 14:47:02 INFO install Unpacking liblua5.1-0 (from .../liblua5.1-0_5.1.4-12ubuntu1_amd64.deb) ...
2655-2014-08-14 14:47:02 INFO install Selecting previously unselected package libmpfr4.
2656-2014-08-14 14:47:02 INFO install Unpacking libmpfr4 (from .../libmpfr4_3.1.0-3ubuntu2_amd64.deb) ...
2657-2014-08-14 14:47:02 INFO install Selecting previously unselected package libquadmath0.
2658-2014-08-14 14:47:02 INFO install Unpacking libquadmath0 (from .../libquadmath0_4.6.3-1ubuntu5_amd64.deb) ...
2659-2014-08-14 14:47:02 INFO install Selecting previously unselected package libmpc2.
2660-2014-08-14 14:47:02 INFO install Unpacking libmpc2 (from .../libmpc2_0.9-4_amd64.deb) ...
2661-2014-08-14 14:47:02 INFO install Selecting previously unselected package binutils.
2662-2014-08-14 14:47:02 INFO install Unpacking binutils (from .../binutils_2.22-6ubuntu1.1_amd64.deb) ...
2663-2014-08-14 14:47:02 INFO install Selecting previously unselected package python-bzrlib.
2664-2014-08-14 14:47:02 INFO install Unpacking python-bzrlib (from .../python-bzrlib_2.5.1-0ubuntu2_amd64.deb) ...
2665-2014-08-14 14:47:03 INFO install Selecting previously unselected package bzr.
2666-2014-08-14 14:47:03 INFO install Unpacking bzr (from .../bzr_2.5.1-0ubuntu2_all.deb) ...
2667-2014-08-14 14:47:03 INFO install Selecting previously unselected package cpp-4.6.
2668-2014-08-14 14:47:03 INFO install Unpacking cpp-4.6 (from .../cpp-4.6_4.6.3-1ubuntu5_amd64.deb) ...
2669-2014-08-14 14:47:03 INFO install Selecting previously unselected package cpp.
2670-2014-08-14 14:47:03 INFO install Unpacking cpp (from .../cpp_4%3a4.6.3-1ubuntu5_amd64.deb) ...
2671-2014-08-14 14:47:03 INFO install Selecting previously unselected package gcc-4.6.
2672-2014-08-14 14:47:03 INFO install Unpacking gcc-4.6 (from .../gcc-4.6_4.6.3-1ubuntu5_amd64.deb) ...
2673-2014-08-14 14:47:03 INFO install Selecting previously unselected package gcc.
2674-2014-08-14 14:47:03 INFO install Unpacking gcc (from .../gcc_4%3a4.6.3-1ubuntu5_amd64.deb) ...
2675-2014-08-14 14:47:03 INFO install Selecting previously unselected package iptraf.
2676-2014-08-14 14:47:03 INFO install Unpacking iptraf (from .../iptraf_3.0.0-8_amd64.deb) ...
2677-2014-08-14 14:47:03 INFO install Selecting previously unselected package libc-dev-bin.
2678-2014-08-14 14:47:03 INFO install Unpacking libc-dev-bin (from .../libc-dev-bin_2.15-0ubuntu10.6_amd64.deb) ...
2679-2014-08-14 14:47:04 INFO install Selecting previously unselected package linux-libc-dev.
2680-2014-08-14 14:47:04 INFO install Unpacking linux-libc-dev (from .../linux-libc-dev_3.2.0-67.101_amd64.deb) ...
2681-2014-08-14 14:47:04 INFO install Selecting previously unselected package libc6-dev.
2682-2014-08-14 14:47:04 INFO install Unpacking libc6-dev (from .../libc6-dev_2.15-0ubuntu10.6_amd64.deb) ...
2683-2014-08-14 14:47:04 INFO install Selecting previously unselected package make.
2684-2014-08-14 14:47:04 INFO install Unpacking make (from .../make_3.81-8.1ubuntu1.1_amd64.deb) ...
2685-2014-08-14 14:47:04 INFO install Selecting previously unselected package manpages-dev.
2686-2014-08-14 14:47:04 INFO install Unpacking manpages-dev (from .../manpages-dev_3.35-0.1ubuntu1_all.deb) ...
2687-2014-08-14 14:47:05 INFO install Selecting previously unselected package multitail.
2688-2014-08-14 14:47:05 INFO install Unpacking multitail (from .../multitail_5.2.8-1_amd64.deb) ...
2689-2014-08-14 14:47:05 INFO install Selecting previously unselected package lynx-cur.
2690-2014-08-14 14:47:05 INFO install Unpacking lynx-cur (from .../lynx-cur_2.8.8dev.9-2ubuntu0.12.04.1_amd64.deb) ...
2691-2014-08-14 14:47:05 INFO install Selecting previously unselected package lynx.
2692-2014-08-14 14:47:05 INFO install Unpacking lynx (from .../lynx_2.8.8dev.9-2ubuntu0.12.04.1_all.deb) ...
2693-2014-08-14 14:47:05 INFO install Selecting previously unselected package nload.
2694-2014-08-14 14:47:05 INFO install Unpacking nload (from .../nload_0.7.3-1_amd64.deb) ...
2695-2014-08-14 14:47:05 INFO install Selecting previously unselected package nmap.
2696-2014-08-14 14:47:05 INFO install Unpacking nmap (from .../nmap_5.21-1.1ubuntu1_amd64.deb) ...
2697-2014-08-14 14:47:05 INFO install Processing triggers for man-db ...
2698-2014-08-14 14:47:08 INFO install Setting up libgomp1 (4.6.3-1ubuntu5) ...
2699-2014-08-14 14:47:08 INFO install Setting up liblua5.1-0 (5.1.4-12ubuntu1) ...
2700-2014-08-14 14:47:08 INFO install Setting up libmpfr4 (3.1.0-3ubuntu2) ...
2701-2014-08-14 14:47:08 INFO install Setting up libquadmath0 (4.6.3-1ubuntu5) ...
2702-2014-08-14 14:47:08 INFO install Setting up libmpc2 (0.9-4) ...
2703-2014-08-14 14:47:08 INFO install Setting up binutils (2.22-6ubuntu1.1) ...
2704-2014-08-14 14:47:08 INFO install Setting up python-bzrlib (2.5.1-0ubuntu2) ...
2705-2014-08-14 14:47:09 INFO install Setting up bzr (2.5.1-0ubuntu2) ...
2706-2014-08-14 14:47:09 INFO install Setting up cpp-4.6 (4.6.3-1ubuntu5) ...
2707-2014-08-14 14:47:09 INFO install Setting up cpp (4:4.6.3-1ubuntu5) ...
2708-2014-08-14 14:47:09 INFO install Setting up gcc-4.6 (4.6.3-1ubuntu5) ...
2709-2014-08-14 14:47:09 INFO install Setting up gcc (4:4.6.3-1ubuntu5) ...
2710-2014-08-14 14:47:09 INFO install Setting up iptraf (3.0.0-8) ...
2711-2014-08-14 14:47:09 INFO install Setting up libc-dev-bin (2.15-0ubuntu10.6) ...
2712-2014-08-14 14:47:09 INFO install Setting up linux-libc-dev (3.2.0-67.101) ...
2713-2014-08-14 14:47:09 INFO install Setting up libc6-dev (2.15-0ubuntu10.6) ...
2714-2014-08-14 14:47:09 INFO install Setting up make (3.81-8.1ubuntu1.1) ...
2715-2014-08-14 14:47:09 INFO install Setting up manpages-dev (3.35-0.1ubuntu1) ...
2716-2014-08-14 14:47:09 INFO install Setting up multitail (5.2.8-1) ...
2717-2014-08-14 14:47:09 INFO install Setting up lynx-cur (2.8.8dev.9-2ubuntu0.12.04.1) ...
2718-2014-08-14 14:47:09 INFO install update-alternatives: using /usr/bin/lynx to provide /usr/bin/www-browser (www-browser) in auto mode.
2719-2014-08-14 14:47:09 INFO install Setting up lynx (2.8.8dev.9-2ubuntu0.12.04.1) ...
2720-2014-08-14 14:47:09 INFO install Setting up nload (0.7.3-1) ...
2721-2014-08-14 14:47:09 INFO install Setting up nmap (5.21-1.1ubuntu1) ...
2722-2014-08-14 14:47:09 INFO install Processing triggers for libc-bin ...
2723-2014-08-14 14:47:09 INFO install ldconfig deferred processing now taking place
2724-2014-08-14 14:47:09 INFO juju-log Opening ports
2725-2014-08-14 14:47:10 INFO juju-log Reconfiguring charm by installing hook again.
2726-2014-08-14 14:47:10 INFO juju-log Installing/upgrading jenkins...
2727-2014-08-14 14:47:10 INFO juju-log Configuring user for jenkins...
2728-2014-08-14 14:47:10 INFO juju-log Installing plugins ()
2729-2014-08-14 14:47:10 INFO config-changed /var/lib/jenkins/plugins /var/lib/juju/agents/unit-jenkins-0/charm
2730-2014-08-14 14:47:10 INFO config-changed /var/lib/juju/agents/unit-jenkins-0/charm
2731-2014-08-14 14:47:10 INFO juju-log Restarting jenkins to pickup configuration changes
2732-2014-08-14 14:47:11 INFO config-changed jenkins stop/waiting
2733-2014-08-14 14:47:11 INFO config-changed jenkins start/running, process 12683
2734-2014-08-14 14:47:11 INFO juju-log Installing tools...
2735-2014-08-14 14:47:11 INFO juju-log Opening ports
2736-2014-08-14 14:47:11 INFO start start: Job is already running: jenkins
2737-2014-08-14 14:47:11 WARNING juju.worker.uniter.charm git_deployer.go:200 no current staging repo
2738-2014-08-14 14:47:23 INFO juju-log master:0: Setting url relation to http://10.5.9.60:8080
2739-2014-08-14 14:47:23 INFO juju-log master:0: Slave host not yet defined, exiting...
2740-2014-08-14 14:47:23 INFO juju-log master:0: Setting url relation to http://10.5.9.60:8080
2741-2014-08-14 14:47:24 INFO juju-log master:0: Adding slave with hostname jenkins-slave-1...
2742-2014-08-14 14:47:24 INFO master-relation-changed Adding node to Jenkins master
2743-2014-08-14 14:47:24 INFO master-relation-changed Traceback (most recent call last):
2744-2014-08-14 14:47:24 INFO master-relation-changed File "/var/lib/juju/agents/unit-jenkins-0/charm/hooks/addnode", line 18, in <module>
2745-2014-08-14 14:47:24 INFO master-relation-changed l_jenkins.create_node(host, int(executors) * 2, host , labels=labels)
2746-2014-08-14 14:47:24 INFO master-relation-changed File "/usr/lib/python2.7/dist-packages/jenkins/__init__.py", line 415, in create_node
2747-2014-08-14 14:47:24 INFO master-relation-changed raise JenkinsException('create[%s] failed'%(name))
2748-2014-08-14 14:47:24 INFO master-relation-changed jenkins.JenkinsException: create[jenkins-slave-1] failed
2749-2014-08-14 14:47:24 ERROR juju.worker.uniter uniter.go:486 hook failed: exit status 1
2750
2751=== removed file 'deployment/dev-hold/unit-jenkins-slave-0.log'
2752--- deployment/dev-hold/unit-jenkins-slave-0.log 2014-10-02 15:18:00 +0000
2753+++ deployment/dev-hold/unit-jenkins-slave-0.log 1970-01-01 00:00:00 +0000
2754@@ -1,562 +0,0 @@
2755-2014-08-14 14:46:39 INFO juju.cmd supercommand.go:37 running jujud [1.20.1-precise-amd64 gc]
2756-2014-08-14 14:46:39 DEBUG juju.agent agent.go:377 read agent config, format "1.18"
2757-2014-08-14 14:46:39 INFO juju.jujud unit.go:76 unit agent unit-jenkins-slave-0 start (1.20.1-precise-amd64 [gc])
2758-2014-08-14 14:46:39 INFO juju.worker runner.go:260 start "api"
2759-2014-08-14 14:46:39 INFO juju.state.api apiclient.go:242 dialing "wss://10.5.9.59:17070/"
2760-2014-08-14 14:46:39 INFO juju.state.api apiclient.go:176 connection established to "wss://10.5.9.59:17070/"
2761-2014-08-14 14:46:39 INFO juju.state.api apiclient.go:242 dialing "wss://10.5.9.59:17070/"
2762-2014-08-14 14:46:39 INFO juju.state.api apiclient.go:176 connection established to "wss://10.5.9.59:17070/"
2763-2014-08-14 14:46:39 INFO juju.worker runner.go:260 start "upgrader"
2764-2014-08-14 14:46:39 INFO juju.worker runner.go:260 start "logger"
2765-2014-08-14 14:46:39 DEBUG juju.worker.logger logger.go:35 initial log config: "<root>=DEBUG"
2766-2014-08-14 14:46:39 INFO juju.worker runner.go:260 start "uniter"
2767-2014-08-14 14:46:39 DEBUG juju.worker.logger logger.go:60 logger setup
2768-2014-08-14 14:46:39 INFO juju.worker runner.go:260 start "apiaddressupdater"
2769-2014-08-14 14:46:39 INFO juju.worker runner.go:260 start "rsyslog"
2770-2014-08-14 14:46:39 DEBUG juju.worker.rsyslog worker.go:75 starting rsyslog worker mode 1 for "unit-jenkins-slave-0" ""
2771-2014-08-14 14:46:39 DEBUG juju.worker.logger logger.go:45 reconfiguring logging from "<root>=DEBUG" to "<root>=WARNING;unit=DEBUG"
2772-2014-08-14 14:46:40 INFO install + install_slave
2773-2014-08-14 14:46:40 INFO install + juju-log 'Installing jenkins-slave...'
2774-2014-08-14 14:46:40 INFO juju-log Installing jenkins-slave...
2775-2014-08-14 14:46:40 INFO install + [[ ! -f /etc/init/jenkins-slave.conf ]]
2776-2014-08-14 14:46:40 INFO install ++ apt-cache madison jenkins-slave
2777-2014-08-14 14:46:41 INFO install + [[ jenkins-slave | 1.424.6+dfsg-1ubuntu0.2 | http://nova.clouds.archive.ubuntu.com/ubuntu/ precise-updates/universe amd64 Packages
2778-2014-08-14 14:46:41 INFO install jenkins-slave | 1.424.6+dfsg-1ubuntu0.1 | http://security.ubuntu.com/ubuntu/ precise-security/universe amd64 Packages
2779-2014-08-14 14:46:41 INFO install jenkins-slave | 1.424.6+dfsg-1 | http://nova.clouds.archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
2780-2014-08-14 14:46:41 INFO install jenkins | 1.424.6+dfsg-1 | http://nova.clouds.archive.ubuntu.com/ubuntu/ precise/universe Sources
2781-2014-08-14 14:46:41 INFO install jenkins | 1.424.6+dfsg-1ubuntu0.2 | http://nova.clouds.archive.ubuntu.com/ubuntu/ precise-updates/universe Sources
2782-2014-08-14 14:46:41 INFO install jenkins | 1.424.6+dfsg-1ubuntu0.1 | http://security.ubuntu.com/ubuntu/ precise-security/universe Sources =~ .*jenkins-slave.* ]]
2783-2014-08-14 14:46:41 INFO install + apt-get -y install -qq jenkins-slave wget
2784-2014-08-14 14:46:44 INFO install
2785Extracting templates from packages: 39%
2786Extracting templates from packages: 78%
2787Extracting templates from packages: 100%
2788-2014-08-14 14:46:44 INFO install Preconfiguring packages ...
2789-2014-08-14 14:46:44 INFO install Selecting previously unselected package libasound2.
2790-2014-08-14 14:46:44 INFO install (Reading database ... 48278 files and directories currently installed.)
2791-2014-08-14 14:46:44 INFO install Unpacking libasound2 (from .../libasound2_1.0.25-1ubuntu10.2_amd64.deb) ...
2792-2014-08-14 14:46:44 INFO install Selecting previously unselected package libasyncns0.
2793-2014-08-14 14:46:44 INFO install Unpacking libasyncns0 (from .../libasyncns0_0.8-4_amd64.deb) ...
2794-2014-08-14 14:46:44 INFO install Selecting previously unselected package libatk1.0-data.
2795-2014-08-14 14:46:44 INFO install Unpacking libatk1.0-data (from .../libatk1.0-data_2.4.0-0ubuntu1_all.deb) ...
2796-2014-08-14 14:46:44 INFO install Selecting previously unselected package libatk1.0-0.
2797-2014-08-14 14:46:44 INFO install Unpacking libatk1.0-0 (from .../libatk1.0-0_2.4.0-0ubuntu1_amd64.deb) ...
2798-2014-08-14 14:46:44 INFO install Selecting previously unselected package libgtk2.0-common.
2799-2014-08-14 14:46:44 INFO install Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.24.10-0ubuntu6.1_all.deb) ...
2800-2014-08-14 14:46:44 INFO install Selecting previously unselected package ttf-dejavu-core.
2801-2014-08-14 14:46:44 INFO install Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2ubuntu1_all.deb) ...
2802-2014-08-14 14:46:44 INFO install Selecting previously unselected package fontconfig-config.
2803-2014-08-14 14:46:44 INFO install Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3ubuntu9.1_all.deb) ...
2804-2014-08-14 14:46:44 INFO install Selecting previously unselected package libfontconfig1.
2805-2014-08-14 14:46:44 INFO install Unpacking libfontconfig1 (from .../libfontconfig1_2.8.0-3ubuntu9.1_amd64.deb) ...
2806-2014-08-14 14:46:44 INFO install Selecting previously unselected package libpixman-1-0.
2807-2014-08-14 14:46:44 INFO install Unpacking libpixman-1-0 (from .../libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1_amd64.deb) ...
2808-2014-08-14 14:46:45 INFO install Selecting previously unselected package libxcb-render0.
2809-2014-08-14 14:46:45 INFO install Unpacking libxcb-render0 (from .../libxcb-render0_1.8.1-1ubuntu0.2_amd64.deb) ...
2810-2014-08-14 14:46:45 INFO install Selecting previously unselected package libxcb-shm0.
2811-2014-08-14 14:46:45 INFO install Unpacking libxcb-shm0 (from .../libxcb-shm0_1.8.1-1ubuntu0.2_amd64.deb) ...
2812-2014-08-14 14:46:45 INFO install Selecting previously unselected package libxrender1.
2813-2014-08-14 14:46:45 INFO install Unpacking libxrender1 (from .../libxrender1_1%3a0.9.6-2ubuntu0.1_amd64.deb) ...
2814-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcairo2.
2815-2014-08-14 14:46:45 INFO install Unpacking libcairo2 (from .../libcairo2_1.10.2-6.1ubuntu3_amd64.deb) ...
2816-2014-08-14 14:46:45 INFO install Selecting previously unselected package libavahi-common-data.
2817-2014-08-14 14:46:45 INFO install Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.30-5ubuntu2.1_amd64.deb) ...
2818-2014-08-14 14:46:45 INFO install Selecting previously unselected package libavahi-common3.
2819-2014-08-14 14:46:45 INFO install Unpacking libavahi-common3 (from .../libavahi-common3_0.6.30-5ubuntu2.1_amd64.deb) ...
2820-2014-08-14 14:46:45 INFO install Selecting previously unselected package libavahi-client3.
2821-2014-08-14 14:46:45 INFO install Unpacking libavahi-client3 (from .../libavahi-client3_0.6.30-5ubuntu2.1_amd64.deb) ...
2822-2014-08-14 14:46:45 INFO install Selecting previously unselected package libcups2.
2823-2014-08-14 14:46:45 INFO install Unpacking libcups2 (from .../libcups2_1.5.3-0ubuntu8.4_amd64.deb) ...
2824-2014-08-14 14:46:45 INFO install Selecting previously unselected package libjpeg-turbo8.
2825-2014-08-14 14:46:45 INFO install Unpacking libjpeg-turbo8 (from .../libjpeg-turbo8_1.1.90+svn733-0ubuntu4.4_amd64.deb) ...
2826-2014-08-14 14:46:45 INFO install Selecting previously unselected package libjpeg8.
2827-2014-08-14 14:46:45 INFO install Unpacking libjpeg8 (from .../libjpeg8_8c-2ubuntu7_amd64.deb) ...
2828-2014-08-14 14:46:45 INFO install Selecting previously unselected package libjasper1.
2829-2014-08-14 14:46:45 INFO install Unpacking libjasper1 (from .../libjasper1_1.900.1-13_amd64.deb) ...
2830-2014-08-14 14:46:45 INFO install Selecting previously unselected package libtiff4.
2831-2014-08-14 14:46:45 INFO install Unpacking libtiff4 (from .../libtiff4_3.9.5-2ubuntu1.6_amd64.deb) ...
2832-2014-08-14 14:46:45 INFO install Selecting previously unselected package libgdk-pixbuf2.0-common.
2833-2014-08-14 14:46:45 INFO install Unpacking libgdk-pixbuf2.0-common (from .../libgdk-pixbuf2.0-common_2.26.1-1ubuntu1.1_all.deb) ...
2834-2014-08-14 14:46:45 INFO install Selecting previously unselected package libgdk-pixbuf2.0-0.
2835-2014-08-14 14:46:45 INFO install Unpacking libgdk-pixbuf2.0-0 (from .../libgdk-pixbuf2.0-0_2.26.1-1ubuntu1.1_amd64.deb) ...
2836-2014-08-14 14:46:45 INFO install Selecting previously unselected package libthai-data.
2837-2014-08-14 14:46:45 INFO install Unpacking libthai-data (from .../libthai-data_0.1.16-3_all.deb) ...
2838-2014-08-14 14:46:45 INFO install Selecting previously unselected package libdatrie1.
2839-2014-08-14 14:46:46 INFO install Unpacking libdatrie1 (from .../libdatrie1_0.2.5-3_amd64.deb) ...
2840-2014-08-14 14:46:46 INFO install Selecting previously unselected package libthai0.
2841-2014-08-14 14:46:46 INFO install Unpacking libthai0 (from .../libthai0_0.1.16-3_amd64.deb) ...
2842-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxft2.
2843-2014-08-14 14:46:46 INFO install Unpacking libxft2 (from .../libxft2_2.2.0-3ubuntu2_amd64.deb) ...
2844-2014-08-14 14:46:46 INFO install Selecting previously unselected package fontconfig.
2845-2014-08-14 14:46:46 INFO install Unpacking fontconfig (from .../fontconfig_2.8.0-3ubuntu9.1_amd64.deb) ...
2846-2014-08-14 14:46:46 INFO install Selecting previously unselected package libpango1.0-0.
2847-2014-08-14 14:46:46 INFO install Unpacking libpango1.0-0 (from .../libpango1.0-0_1.30.0-0ubuntu3.1_amd64.deb) ...
2848-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxcomposite1.
2849-2014-08-14 14:46:46 INFO install Unpacking libxcomposite1 (from .../libxcomposite1_1%3a0.4.3-2build1_amd64.deb) ...
2850-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxfixes3.
2851-2014-08-14 14:46:46 INFO install Unpacking libxfixes3 (from .../libxfixes3_1%3a5.0-4ubuntu4.2_amd64.deb) ...
2852-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxcursor1.
2853-2014-08-14 14:46:46 INFO install Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.12-1ubuntu0.1_amd64.deb) ...
2854-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxdamage1.
2855-2014-08-14 14:46:46 INFO install Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.3-2build1_amd64.deb) ...
2856-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxi6.
2857-2014-08-14 14:46:46 INFO install Unpacking libxi6 (from .../libxi6_2%3a1.7.1.901-1ubuntu1~precise1_amd64.deb) ...
2858-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxinerama1.
2859-2014-08-14 14:46:46 INFO install Unpacking libxinerama1 (from .../libxinerama1_2%3a1.1.1-3ubuntu0.1_amd64.deb) ...
2860-2014-08-14 14:46:46 INFO install Selecting previously unselected package libxrandr2.
2861-2014-08-14 14:46:46 INFO install Unpacking libxrandr2 (from .../libxrandr2_2%3a1.3.2-2ubuntu0.2_amd64.deb) ...
2862-2014-08-14 14:46:46 INFO install Selecting previously unselected package shared-mime-info.
2863-2014-08-14 14:46:46 INFO install Unpacking shared-mime-info (from .../shared-mime-info_1.0-0ubuntu4.1_amd64.deb) ...
2864-2014-08-14 14:46:46 INFO install Selecting previously unselected package libgtk2.0-0.
2865-2014-08-14 14:46:46 INFO install Unpacking libgtk2.0-0 (from .../libgtk2.0-0_2.24.10-0ubuntu6.1_amd64.deb) ...
2866-2014-08-14 14:46:47 INFO install Selecting previously unselected package openjdk-6-jre-lib.
2867-2014-08-14 14:46:47 INFO install Unpacking openjdk-6-jre-lib (from .../openjdk-6-jre-lib_6b32-1.13.4-4ubuntu0.12.04.2_all.deb) ...
2868-2014-08-14 14:46:47 INFO install Selecting previously unselected package libnspr4.
2869-2014-08-14 14:46:47 INFO install Unpacking libnspr4 (from .../libnspr4_4.9.5-0ubuntu0.12.04.3_amd64.deb) ...
2870-2014-08-14 14:46:47 INFO install Selecting previously unselected package libnss3.
2871-2014-08-14 14:46:47 INFO install Unpacking libnss3 (from .../libnss3_3.15.4-0ubuntu0.12.04.2_amd64.deb) ...
2872-2014-08-14 14:46:47 INFO install Selecting previously unselected package libnss3-1d.
2873-2014-08-14 14:46:47 INFO install Unpacking libnss3-1d (from .../libnss3-1d_3.15.4-0ubuntu0.12.04.2_amd64.deb) ...
2874-2014-08-14 14:46:47 INFO install Selecting previously unselected package ca-certificates-java.
2875-2014-08-14 14:46:47 INFO install Unpacking ca-certificates-java (from .../ca-certificates-java_20110912ubuntu6_all.deb) ...
2876-2014-08-14 14:46:47 INFO install Selecting previously unselected package tzdata-java.
2877-2014-08-14 14:46:47 INFO install Unpacking tzdata-java (from .../tzdata-java_2014e-0ubuntu0.12.04_all.deb) ...
2878-2014-08-14 14:46:47 INFO install Selecting previously unselected package java-common.
2879-2014-08-14 14:46:47 INFO install Unpacking java-common (from .../java-common_0.43ubuntu2_all.deb) ...
2880-2014-08-14 14:46:47 INFO install Selecting previously unselected package liblcms2-2.
2881-2014-08-14 14:46:47 INFO install Unpacking liblcms2-2 (from .../liblcms2-2_2.2+git20110628-2ubuntu3.1_amd64.deb) ...
2882-2014-08-14 14:46:47 INFO install Selecting previously unselected package openjdk-6-jre-headless.
2883-2014-08-14 14:46:47 INFO install Unpacking openjdk-6-jre-headless (from .../openjdk-6-jre-headless_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2884-2014-08-14 14:46:48 INFO install Selecting previously unselected package default-jre-headless.
2885-2014-08-14 14:46:48 INFO install Unpacking default-jre-headless (from .../default-jre-headless_1%3a1.6-43ubuntu2_amd64.deb) ...
2886-2014-08-14 14:46:48 INFO install Selecting previously unselected package libgif4.
2887-2014-08-14 14:46:48 INFO install Unpacking libgif4 (from .../libgif4_4.1.6-9ubuntu1_amd64.deb) ...
2888-2014-08-14 14:46:48 INFO install Selecting previously unselected package libjson0.
2889-2014-08-14 14:46:48 INFO install Unpacking libjson0 (from .../libjson0_0.9-1ubuntu1.1_amd64.deb) ...
2890-2014-08-14 14:46:48 INFO install Selecting previously unselected package libogg0.
2891-2014-08-14 14:46:48 INFO install Unpacking libogg0 (from .../libogg0_1.2.2~dfsg-1ubuntu1_amd64.deb) ...
2892-2014-08-14 14:46:48 INFO install Selecting previously unselected package libflac8.
2893-2014-08-14 14:46:48 INFO install Unpacking libflac8 (from .../libflac8_1.2.1-6_amd64.deb) ...
2894-2014-08-14 14:46:48 INFO install Selecting previously unselected package libvorbis0a.
2895-2014-08-14 14:46:48 INFO install Unpacking libvorbis0a (from .../libvorbis0a_1.3.2-1ubuntu3_amd64.deb) ...
2896-2014-08-14 14:46:48 INFO install Selecting previously unselected package libvorbisenc2.
2897-2014-08-14 14:46:48 INFO install Unpacking libvorbisenc2 (from .../libvorbisenc2_1.3.2-1ubuntu3_amd64.deb) ...
2898-2014-08-14 14:46:48 INFO install Selecting previously unselected package libsndfile1.
2899-2014-08-14 14:46:48 INFO install Unpacking libsndfile1 (from .../libsndfile1_1.0.25-4_amd64.deb) ...
2900-2014-08-14 14:46:48 INFO install Selecting previously unselected package libpulse0.
2901-2014-08-14 14:46:49 INFO install Unpacking libpulse0 (from .../libpulse0_1%3a1.1-0ubuntu15.4_amd64.deb) ...
2902-2014-08-14 14:46:49 INFO install Selecting previously unselected package x11-common.
2903-2014-08-14 14:46:49 INFO install Unpacking x11-common (from .../x11-common_1%3a7.6+12ubuntu2_all.deb) ...
2904-2014-08-14 14:46:49 INFO install Selecting previously unselected package libxtst6.
2905-2014-08-14 14:46:49 INFO install Unpacking libxtst6 (from .../libxtst6_2%3a1.2.0-4ubuntu0.1_amd64.deb) ...
2906-2014-08-14 14:46:49 INFO install Selecting previously unselected package openjdk-6-jre.
2907-2014-08-14 14:46:49 INFO install Unpacking openjdk-6-jre (from .../openjdk-6-jre_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2908-2014-08-14 14:46:49 INFO install Selecting previously unselected package default-jre.
2909-2014-08-14 14:46:49 INFO install Unpacking default-jre (from .../default-jre_1%3a1.6-43ubuntu2_amd64.deb) ...
2910-2014-08-14 14:46:49 INFO install Selecting previously unselected package libatk-wrapper-java.
2911-2014-08-14 14:46:49 INFO install Unpacking libatk-wrapper-java (from .../libatk-wrapper-java_0.30.4-0ubuntu2_all.deb) ...
2912-2014-08-14 14:46:49 INFO install Selecting previously unselected package libatk-wrapper-java-jni.
2913-2014-08-14 14:46:49 INFO install Unpacking libatk-wrapper-java-jni (from .../libatk-wrapper-java-jni_0.30.4-0ubuntu2_amd64.deb) ...
2914-2014-08-14 14:46:49 INFO install Selecting previously unselected package hicolor-icon-theme.
2915-2014-08-14 14:46:49 INFO install Unpacking hicolor-icon-theme (from .../hicolor-icon-theme_0.12-1ubuntu2_all.deb) ...
2916-2014-08-14 14:46:49 INFO install Selecting previously unselected package libjffi-jni.
2917-2014-08-14 14:46:49 INFO install Unpacking libjffi-jni (from .../libjffi-jni_1.0.2-8ubuntu1_amd64.deb) ...
2918-2014-08-14 14:46:49 INFO install Selecting previously unselected package libjffi-java.
2919-2014-08-14 14:46:49 INFO install Unpacking libjffi-java (from .../libjffi-java_1.0.2-8ubuntu1_all.deb) ...
2920-2014-08-14 14:46:49 INFO install Selecting previously unselected package libjaffl-java.
2921-2014-08-14 14:46:50 INFO install Unpacking libjaffl-java (from .../libjaffl-java_0.5.4-1_all.deb) ...
2922-2014-08-14 14:46:50 INFO install Selecting previously unselected package libconstantine-java.
2923-2014-08-14 14:46:50 INFO install Unpacking libconstantine-java (from .../libconstantine-java_0.7-3_all.deb) ...
2924-2014-08-14 14:46:50 INFO install Selecting previously unselected package libjnr-posix-java.
2925-2014-08-14 14:46:50 INFO install Unpacking libjnr-posix-java (from .../libjnr-posix-java_1.1.4~git1.8aa26268b-1ubuntu1_all.deb) ...
2926-2014-08-14 14:46:50 INFO install Selecting previously unselected package jenkins-cli.
2927-2014-08-14 14:46:50 INFO install Unpacking jenkins-cli (from .../jenkins-cli_1.424.6+dfsg-1ubuntu0.2_all.deb) ...
2928-2014-08-14 14:46:50 INFO install Selecting previously unselected package jenkins-slave.
2929-2014-08-14 14:46:50 INFO install Unpacking jenkins-slave (from .../jenkins-slave_1.424.6+dfsg-1ubuntu0.2_all.deb) ...
2930-2014-08-14 14:46:50 INFO install Selecting previously unselected package libgtk2.0-bin.
2931-2014-08-14 14:46:50 INFO install Unpacking libgtk2.0-bin (from .../libgtk2.0-bin_2.24.10-0ubuntu6.1_amd64.deb) ...
2932-2014-08-14 14:46:50 INFO install Selecting previously unselected package ttf-dejavu-extra.
2933-2014-08-14 14:46:50 INFO install Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.33-2ubuntu1_all.deb) ...
2934-2014-08-14 14:46:50 INFO install Selecting previously unselected package icedtea-6-jre-cacao.
2935-2014-08-14 14:46:50 INFO install Unpacking icedtea-6-jre-cacao (from .../icedtea-6-jre-cacao_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2936-2014-08-14 14:46:50 INFO install Selecting previously unselected package icedtea-6-jre-jamvm.
2937-2014-08-14 14:46:50 INFO install Unpacking icedtea-6-jre-jamvm (from .../icedtea-6-jre-jamvm_6b32-1.13.4-4ubuntu0.12.04.2_amd64.deb) ...
2938-2014-08-14 14:46:50 INFO install Selecting previously unselected package icedtea-netx-common.
2939-2014-08-14 14:46:50 INFO install Unpacking icedtea-netx-common (from .../icedtea-netx-common_1.2.3-0ubuntu0.12.04.4_all.deb) ...
2940-2014-08-14 14:46:50 INFO install Selecting previously unselected package icedtea-netx.
2941-2014-08-14 14:46:50 INFO install Unpacking icedtea-netx (from .../icedtea-netx_1.2.3-0ubuntu0.12.04.4_amd64.deb) ...
2942-2014-08-14 14:46:50 INFO install Processing triggers for man-db ...
2943-2014-08-14 14:46:51 INFO install Processing triggers for ureadahead ...
2944-2014-08-14 14:46:51 INFO install Setting up libasound2 (1.0.25-1ubuntu10.2) ...
2945-2014-08-14 14:46:51 INFO install Setting up libasyncns0 (0.8-4) ...
2946-2014-08-14 14:46:51 INFO install Setting up libatk1.0-data (2.4.0-0ubuntu1) ...
2947-2014-08-14 14:46:51 INFO install Setting up libatk1.0-0 (2.4.0-0ubuntu1) ...
2948-2014-08-14 14:46:51 INFO install Setting up libgtk2.0-common (2.24.10-0ubuntu6.1) ...
2949-2014-08-14 14:46:51 INFO install Setting up ttf-dejavu-core (2.33-2ubuntu1) ...
2950-2014-08-14 14:46:51 INFO install Setting up fontconfig-config (2.8.0-3ubuntu9.1) ...
2951-2014-08-14 14:46:51 INFO install Setting up libfontconfig1 (2.8.0-3ubuntu9.1) ...
2952-2014-08-14 14:46:51 INFO install Setting up libpixman-1-0 (0.30.2-1ubuntu0.0.0.0.1) ...
2953-2014-08-14 14:46:51 INFO install Setting up libxcb-render0 (1.8.1-1ubuntu0.2) ...
2954-2014-08-14 14:46:51 INFO install Setting up libxcb-shm0 (1.8.1-1ubuntu0.2) ...
2955-2014-08-14 14:46:51 INFO install Setting up libxrender1 (1:0.9.6-2ubuntu0.1) ...
2956-2014-08-14 14:46:51 INFO install Setting up libcairo2 (1.10.2-6.1ubuntu3) ...
2957-2014-08-14 14:46:51 INFO install Setting up libavahi-common-data (0.6.30-5ubuntu2.1) ...
2958-2014-08-14 14:46:51 INFO install Setting up libavahi-common3 (0.6.30-5ubuntu2.1) ...
2959-2014-08-14 14:46:51 INFO install Setting up libavahi-client3 (0.6.30-5ubuntu2.1) ...
2960-2014-08-14 14:46:51 INFO install Setting up libcups2 (1.5.3-0ubuntu8.4) ...
2961-2014-08-14 14:46:51 INFO install Setting up libjpeg-turbo8 (1.1.90+svn733-0ubuntu4.4) ...
2962-2014-08-14 14:46:51 INFO install Setting up libjpeg8 (8c-2ubuntu7) ...
2963-2014-08-14 14:46:51 INFO install Setting up libjasper1 (1.900.1-13) ...
2964-2014-08-14 14:46:51 INFO install Setting up libtiff4 (3.9.5-2ubuntu1.6) ...
2965-2014-08-14 14:46:52 INFO install Setting up libgdk-pixbuf2.0-common (2.26.1-1ubuntu1.1) ...
2966-2014-08-14 14:46:52 INFO install Setting up libgdk-pixbuf2.0-0 (2.26.1-1ubuntu1.1) ...
2967-2014-08-14 14:46:52 INFO install Setting up libthai-data (0.1.16-3) ...
2968-2014-08-14 14:46:52 INFO install Setting up libdatrie1 (0.2.5-3) ...
2969-2014-08-14 14:46:52 INFO install Setting up libthai0 (0.1.16-3) ...
2970-2014-08-14 14:46:52 INFO install Setting up libxft2 (2.2.0-3ubuntu2) ...
2971-2014-08-14 14:46:52 INFO install Setting up fontconfig (2.8.0-3ubuntu9.1) ...
2972-2014-08-14 14:46:52 INFO install Cleaning up old fontconfig caches... done.
2973-2014-08-14 14:46:54 INFO install Regenerating fonts cache... done.
2974-2014-08-14 14:46:54 INFO install Setting up libpango1.0-0 (1.30.0-0ubuntu3.1) ...
2975-2014-08-14 14:46:54 INFO install Setting up libxcomposite1 (1:0.4.3-2build1) ...
2976-2014-08-14 14:46:54 INFO install Setting up libxfixes3 (1:5.0-4ubuntu4.2) ...
2977-2014-08-14 14:46:54 INFO install Setting up libxcursor1 (1:1.1.12-1ubuntu0.1) ...
2978-2014-08-14 14:46:54 INFO install Setting up libxdamage1 (1:1.1.3-2build1) ...
2979-2014-08-14 14:46:54 INFO install Setting up libxi6 (2:1.7.1.901-1ubuntu1~precise1) ...
2980-2014-08-14 14:46:54 INFO install Setting up libxinerama1 (2:1.1.1-3ubuntu0.1) ...
2981-2014-08-14 14:46:54 INFO install Setting up libxrandr2 (2:1.3.2-2ubuntu0.2) ...
2982-2014-08-14 14:46:54 INFO install Setting up shared-mime-info (1.0-0ubuntu4.1) ...
2983-2014-08-14 14:46:55 INFO install Setting up libgtk2.0-0 (2.24.10-0ubuntu6.1) ...
2984-2014-08-14 14:46:55 INFO install Setting up java-common (0.43ubuntu2) ...
2985-2014-08-14 14:46:55 INFO install Setting up tzdata-java (2014e-0ubuntu0.12.04) ...
2986-2014-08-14 14:46:55 INFO install Setting up liblcms2-2 (2.2+git20110628-2ubuntu3.1) ...
2987-2014-08-14 14:46:55 INFO install Setting up libnspr4 (4.9.5-0ubuntu0.12.04.3) ...
2988-2014-08-14 14:46:55 INFO install Setting up libnss3 (3.15.4-0ubuntu0.12.04.2) ...
2989-2014-08-14 14:46:55 INFO install Setting up libnss3-1d (3.15.4-0ubuntu0.12.04.2) ...
2990-2014-08-14 14:46:55 INFO install Setting up libgif4 (4.1.6-9ubuntu1) ...
2991-2014-08-14 14:46:55 INFO install Setting up libjson0 (0.9-1ubuntu1.1) ...
2992-2014-08-14 14:46:55 INFO install Setting up libogg0 (1.2.2~dfsg-1ubuntu1) ...
2993-2014-08-14 14:46:55 INFO install Setting up libflac8 (1.2.1-6) ...
2994-2014-08-14 14:46:55 INFO install Setting up libvorbis0a (1.3.2-1ubuntu3) ...
2995-2014-08-14 14:46:55 INFO install Setting up libvorbisenc2 (1.3.2-1ubuntu3) ...
2996-2014-08-14 14:46:55 INFO install Setting up libsndfile1 (1.0.25-4) ...
2997-2014-08-14 14:46:55 INFO install Setting up libpulse0 (1:1.1-0ubuntu15.4) ...
2998-2014-08-14 14:46:55 INFO install Setting up x11-common (1:7.6+12ubuntu2) ...
2999-2014-08-14 14:46:55 INFO install Setting up libxtst6 (2:1.2.0-4ubuntu0.1) ...
3000-2014-08-14 14:46:55 INFO install Setting up hicolor-icon-theme (0.12-1ubuntu2) ...
3001-2014-08-14 14:46:55 INFO install Setting up libjffi-jni (1.0.2-8ubuntu1) ...
3002-2014-08-14 14:46:55 INFO install Setting up libjffi-java (1.0.2-8ubuntu1) ...
3003-2014-08-14 14:46:55 INFO install Setting up libjaffl-java (0.5.4-1) ...
3004-2014-08-14 14:46:55 INFO install Setting up libgtk2.0-bin (2.24.10-0ubuntu6.1) ...
3005-2014-08-14 14:46:55 INFO install Setting up ttf-dejavu-extra (2.33-2ubuntu1) ...
3006-2014-08-14 14:46:55 INFO install Setting up icedtea-netx-common (1.2.3-0ubuntu0.12.04.4) ...
3007-2014-08-14 14:46:55 INFO install Setting up openjdk-6-jre-headless (6b32-1.13.4-4ubuntu0.12.04.2) ...
3008-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/java to provide /usr/bin/java (java) in auto mode.
3009-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode.
3010-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode.
3011-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode.
3012-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode.
3013-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode.
3014-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/orbd to provide /usr/bin/orbd (orbd) in auto mode.
3015-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/servertool to provide /usr/bin/servertool (servertool) in auto mode.
3016-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/tnameserv to provide /usr/bin/tnameserv (tnameserv) in auto mode.
3017-2014-08-14 14:46:55 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode.
3018-2014-08-14 14:46:56 INFO install Setting up default-jre-headless (1:1.6-43ubuntu2) ...
3019-2014-08-14 14:46:56 INFO install Setting up openjdk-6-jre (6b32-1.13.4-4ubuntu0.12.04.2) ...
3020-2014-08-14 14:46:56 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/policytool to provide /usr/bin/policytool (policytool) in auto mode.
3021-2014-08-14 14:46:56 INFO install Setting up default-jre (1:1.6-43ubuntu2) ...
3022-2014-08-14 14:46:56 INFO install Setting up libconstantine-java (0.7-3) ...
3023-2014-08-14 14:46:56 INFO install Setting up libjnr-posix-java (1.1.4~git1.8aa26268b-1ubuntu1) ...
3024-2014-08-14 14:46:56 INFO install Setting up jenkins-cli (1.424.6+dfsg-1ubuntu0.2) ...
3025-2014-08-14 14:46:56 INFO install Setting up jenkins-slave (1.424.6+dfsg-1ubuntu0.2) ...
3026-2014-08-14 14:46:56 INFO install jenkins-slave stop/waiting
3027-2014-08-14 14:46:57 INFO install Setting up icedtea-6-jre-cacao (6b32-1.13.4-4ubuntu0.12.04.2) ...
3028-2014-08-14 14:46:57 INFO install Setting up icedtea-6-jre-jamvm (6b32-1.13.4-4ubuntu0.12.04.2) ...
3029-2014-08-14 14:46:57 INFO install Setting up icedtea-netx (1.2.3-0ubuntu0.12.04.4) ...
3030-2014-08-14 14:46:57 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/javaws to provide /usr/bin/javaws (javaws) in auto mode.
3031-2014-08-14 14:46:57 INFO install update-alternatives: using /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/itweb-settings to provide /usr/bin/itweb-settings (itweb-settings) in auto mode.
3032-2014-08-14 14:46:57 INFO install Setting up ca-certificates-java (20110912ubuntu6) ...
3033-2014-08-14 14:46:57 INFO install Adding debian:Comodo_Secure_Services_root.pem
3034-2014-08-14 14:46:57 INFO install Adding debian:Baltimore_CyberTrust_Root.pem
3035-2014-08-14 14:46:57 INFO install Adding debian:SecureSign_RootCA11.pem
3036-2014-08-14 14:46:57 INFO install Adding debian:Sonera_Class_2_Root_CA.pem
3037-2014-08-14 14:46:57 INFO install Adding debian:DST_ACES_CA_X6.pem
3038-2014-08-14 14:46:57 INFO install Adding debian:Comodo_AAA_Services_root.pem
3039-2014-08-14 14:46:57 INFO install Adding debian:Staat_der_Nederlanden_Root_CA.pem
3040-2014-08-14 14:46:57 INFO install Adding debian:CA_Disig.pem
3041-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_3_Root_CA.pem
3042-2014-08-14 14:46:57 INFO install Adding debian:EC-ACC.pem
3043-2014-08-14 14:46:57 INFO install Adding debian:XRamp_Global_CA_Root.pem
3044-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
3045-2014-08-14 14:46:57 INFO install Adding debian:DST_Root_CA_X3.pem
3046-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Universal_CA_2.pem
3047-2014-08-14 14:46:57 INFO install Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
3048-2014-08-14 14:46:57 INFO install Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem
3049-2014-08-14 14:46:57 INFO install Adding debian:CA_Disig_Root_R2.pem
3050-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_External_Root.pem
3051-2014-08-14 14:46:57 INFO install Adding debian:TC_TrustCenter_Universal_CA_I.pem
3052-2014-08-14 14:46:57 INFO install Adding debian:DigiCert_Global_Root_CA.pem
3053-2014-08-14 14:46:57 INFO install Adding debian:certSIGN_ROOT_CA.pem
3054-2014-08-14 14:46:57 INFO install Adding debian:ACEDICOM_Root.pem
3055-2014-08-14 14:46:57 INFO install Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
3056-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_Qualified_Certificates_Root.pem
3057-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Primary_Certification_Authority_-_G2.pem
3058-2014-08-14 14:46:57 INFO install Adding debian:S-TRUST_Authentication_and_Encryption_Root_CA_2005_PN.pem
3059-2014-08-14 14:46:57 INFO install Adding debian:SecureTrust_CA.pem
3060-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F??tan??s??tv??ny.pem. Message:
3061-2014-08-14 14:46:57 INFO install /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F??tan??s??tv??ny.pem (No such file or directory)
3062-2014-08-14 14:46:57 INFO install Adding debian:cert-ec2.pem
3063-2014-08-14 14:46:57 INFO install Adding debian:Network_Solutions_Certificate_Authority.pem
3064-2014-08-14 14:46:57 INFO install Adding debian:GlobalSign_Root_CA_-_R2.pem
3065-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Global_CA.pem
3066-2014-08-14 14:46:57 INFO install Adding debian:ValiCert_Class_2_VA.pem
3067-2014-08-14 14:46:57 INFO install Adding debian:Security_Communication_RootCA2.pem
3068-2014-08-14 14:46:57 INFO install Adding debian:thawte_Primary_Root_CA_-_G3.pem
3069-2014-08-14 14:46:57 INFO install Adding debian:Sonera_Class_1_Root_CA.pem
3070-2014-08-14 14:46:57 INFO install Adding debian:CNNIC_ROOT.pem
3071-2014-08-14 14:46:57 INFO install Adding debian:thawte_Primary_Root_CA_-_G2.pem
3072-2014-08-14 14:46:57 INFO install Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem
3073-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_Low-Value_Services_Root.pem
3074-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_2_CA_1.pem
3075-2014-08-14 14:46:57 INFO install Adding debian:Izenpe.com.pem
3076-2014-08-14 14:46:57 INFO install Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
3077-2014-08-14 14:46:57 INFO install Adding debian:Thawte_Premium_Server_CA.pem
3078-2014-08-14 14:46:57 INFO install Adding debian:Actalis_Authentication_Root_CA.pem
3079-2014-08-14 14:46:57 INFO install Adding debian:Secure_Global_CA.pem
3080-2014-08-14 14:46:57 INFO install Adding debian:StartCom_Certification_Authority_2.pem
3081-2014-08-14 14:46:57 INFO install Adding debian:Cybertrust_Global_Root.pem
3082-2014-08-14 14:46:57 INFO install Adding debian:Wells_Fargo_Root_CA.pem
3083-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_4_Public_Primary_Certification_Authority_-_G3.pem
3084-2014-08-14 14:46:57 INFO install Adding debian:COMODO_Certification_Authority.pem
3085-2014-08-14 14:46:57 INFO install Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem
3086-2014-08-14 14:46:57 INFO install Adding debian:GlobalSign_Root_CA.pem
3087-2014-08-14 14:46:57 INFO install Adding debian:Digital_Signature_Trust_Co._Global_CA_3.pem
3088-2014-08-14 14:46:57 INFO install Adding debian:StartCom_Certification_Authority_G2.pem
3089-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority_-_G2.pem
3090-2014-08-14 14:46:57 INFO install Adding debian:A-Trust-nQual-03.pem
3091-2014-08-14 14:46:57 INFO install Adding debian:Equifax_Secure_eBusiness_CA_1.pem
3092-2014-08-14 14:46:57 INFO install Adding debian:Security_Communication_EV_RootCA1.pem
3093-2014-08-14 14:46:57 INFO install Adding debian:Global_Chambersign_Root_-_2008.pem
3094-2014-08-14 14:46:57 INFO install Adding debian:T-TeleSec_GlobalRoot_Class_3.pem
3095-2014-08-14 14:46:57 INFO install Adding debian:Root_CA_Generalitat_Valenciana.pem
3096-2014-08-14 14:46:57 INFO install Adding debian:E-Guven_Kok_Elektronik_Sertifika_Hizmet_Saglayicisi.pem
3097-2014-08-14 14:46:57 INFO install Adding debian:TDC_Internet_Root_CA.pem
3098-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Primary_Certification_Authority.pem
3099-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_2.pem
3100-2014-08-14 14:46:57 INFO install Adding debian:GlobalSign_Root_CA_-_R3.pem
3101-2014-08-14 14:46:57 INFO install Adding debian:UTN_DATACorp_SGC_Root_CA.pem
3102-2014-08-14 14:46:57 INFO install Adding debian:DigiCert_Assured_ID_Root_CA.pem
3103-2014-08-14 14:46:57 INFO install Adding debian:StartCom_Certification_Authority.pem
3104-2014-08-14 14:46:57 INFO install Adding debian:SwissSign_Silver_CA_-_G2.pem
3105-2014-08-14 14:46:57 INFO install Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
3106-2014-08-14 14:46:57 INFO install Adding debian:Juur-SK.pem
3107-2014-08-14 14:46:57 INFO install Adding debian:SwissSign_Gold_CA_-_G2.pem
3108-2014-08-14 14:46:57 INFO install Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem
3109-2014-08-14 14:46:57 INFO install Adding debian:Camerfirma_Chambers_of_Commerce_Root.pem
3110-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
3111-2014-08-14 14:46:57 INFO install Adding debian:thawte_Primary_Root_CA.pem
3112-2014-08-14 14:46:57 INFO install Adding debian:Taiwan_GRCA.pem
3113-2014-08-14 14:46:57 INFO install Adding debian:Firmaprofesional_Root_CA.pem
3114-2014-08-14 14:46:57 INFO install Adding debian:NetLock_Express_=Class_C=_Root.pem
3115-2014-08-14 14:46:57 INFO install Adding debian:Certum_Trusted_Network_CA.pem
3116-2014-08-14 14:46:57 INFO install Adding debian:TWCA_Root_Certification_Authority.pem
3117-2014-08-14 14:46:57 INFO install Adding debian:Certplus_Class_2_Primary_CA.pem
3118-2014-08-14 14:46:57 INFO install Adding debian:AffirmTrust_Premium.pem
3119-2014-08-14 14:46:57 INFO install Adding debian:TURKTRUST_Certificate_Services_Provider_Root_2.pem
3120-2014-08-14 14:46:57 INFO install Adding debian:Microsec_e-Szigno_Root_CA_2009.pem
3121-2014-08-14 14:46:57 INFO install Adding debian:AddTrust_Public_Services_Root.pem
3122-2014-08-14 14:46:57 INFO install Adding debian:IGC_A.pem
3123-2014-08-14 14:46:57 INFO install Adding debian:Digital_Signature_Trust_Co._Global_CA_1.pem
3124-2014-08-14 14:46:57 INFO install Adding debian:Hongkong_Post_Root_CA_1.pem
3125-2014-08-14 14:46:57 INFO install Adding debian:America_Online_Root_Certification_Authority_1.pem
3126-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
3127-2014-08-14 14:46:57 INFO install Adding debian:Deutsche_Telekom_Root_CA_2.pem
3128-2014-08-14 14:46:57 INFO install Adding debian:GTE_CyberTrust_Global_Root.pem
3129-2014-08-14 14:46:57 INFO install Adding debian:Go_Daddy_Class_2_CA.pem
3130-2014-08-14 14:46:57 INFO install Adding debian:SwissSign_Platinum_CA_-_G2.pem
3131-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa??lay??c??s??.pem. Message:
3132-2014-08-14 14:46:57 INFO install /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa??lay??c??s??.pem (No such file or directory)
3133-2014-08-14 14:46:57 INFO install Adding debian:Chambers_of_Commerce_Root_-_2008.pem
3134-2014-08-14 14:46:57 INFO install Adding debian:ComSign_CA.pem
3135-2014-08-14 14:46:57 INFO install Adding debian:America_Online_Root_Certification_Authority_2.pem
3136-2014-08-14 14:46:57 INFO install Adding debian:Security_Communication_Root_CA.pem
3137-2014-08-14 14:46:57 INFO install Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem
3138-2014-08-14 14:46:57 INFO install Adding debian:PSCProcert.pem
3139-2014-08-14 14:46:57 INFO install Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem
3140-2014-08-14 14:46:57 INFO install Adding debian:ApplicationCA_-_Japanese_Government.pem
3141-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/T??B??TAK_UEKAE_K??k_Sertifika_Hizmet_Sa??lay??c??s??_-_S??r??m_3.pem. Message:
3142-2014-08-14 14:46:57 INFO install /etc/ssl/certs/T??B??TAK_UEKAE_K??k_Sertifika_Hizmet_Sa??lay??c??s??_-_S??r??m_3.pem (No such file or directory)
3143-2014-08-14 14:46:57 INFO install Adding debian:AffirmTrust_Commercial.pem
3144-2014-08-14 14:46:57 INFO install Adding debian:RSA_Security_2048_v3.pem
3145-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_2_Root_CA.pem
3146-2014-08-14 14:46:57 INFO install Adding debian:Swisscom_Root_EV_CA_2.pem
3147-2014-08-14 14:46:57 INFO install Adding debian:Staat_der_Nederlanden_Root_CA_-_G2.pem
3148-2014-08-14 14:46:57 INFO install Adding debian:spi-cacert-2008.pem
3149-2014-08-14 14:46:57 INFO install Adding debian:Entrust.net_Secure_Server_CA.pem
3150-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/AC_Ra??z_Certic??mara_S.A..pem. Message:
3151-2014-08-14 14:46:57 INFO install /etc/ssl/certs/AC_Ra??z_Certic??mara_S.A..pem (No such file or directory)
3152-2014-08-14 14:46:57 INFO install Adding debian:Trustis_FPS_Root_CA.pem
3153-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Global_CA_2.pem
3154-2014-08-14 14:46:57 INFO install Adding debian:TC_TrustCenter_Class_2_CA_II.pem
3155-2014-08-14 14:46:57 INFO install Adding debian:ComSign_Secured_CA.pem
3156-2014-08-14 14:46:57 INFO install Adding debian:OISTE_WISeKey_Global_Root_GA_CA.pem
3157-2014-08-14 14:46:57 INFO install Adding debian:AffirmTrust_Networking.pem
3158-2014-08-14 14:46:57 INFO install Adding debian:Swisscom_Root_CA_2.pem
3159-2014-08-14 14:46:57 INFO install Adding debian:TC_TrustCenter_Class_3_CA_II.pem
3160-2014-08-14 14:46:57 INFO install Adding debian:EE_Certification_Centre_Root_CA.pem
3161-2014-08-14 14:46:57 INFO install Adding debian:TDC_OCES_Root_CA.pem
3162-2014-08-14 14:46:57 INFO install Adding debian:TURKTRUST_Certificate_Services_Provider_Root_1.pem
3163-2014-08-14 14:46:57 INFO install Adding debian:Entrust_Root_Certification_Authority.pem
3164-2014-08-14 14:46:57 INFO install Adding debian:Visa_eCommerce_Root.pem
3165-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_2_Public_Primary_Certification_Authority_-_G2.pem
3166-2014-08-14 14:46:57 INFO install Adding debian:China_Internet_Network_Information_Center_EV_Certificates_Root.pem
3167-2014-08-14 14:46:57 INFO install Adding debian:Swisscom_Root_CA_1.pem
3168-2014-08-14 14:46:57 INFO install Adding debian:RSA_Root_Certificate_1.pem
3169-2014-08-14 14:46:57 INFO install Adding debian:Equifax_Secure_CA.pem
3170-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G2.pem
3171-2014-08-14 14:46:57 INFO install Adding debian:NetLock_Notary_=Class_A=_Root.pem
3172-2014-08-14 14:46:57 INFO install Adding debian:Equifax_Secure_Global_eBusiness_CA.pem
3173-2014-08-14 14:46:57 INFO install Adding debian:Certigna.pem
3174-2014-08-14 14:46:57 INFO install Adding debian:Certum_Root_CA.pem
3175-2014-08-14 14:46:57 INFO install Adding debian:Starfield_Class_2_CA.pem
3176-2014-08-14 14:46:57 INFO install Adding debian:TURKTRUST_Certificate_Services_Provider_Root_2007.pem
3177-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority.pem
3178-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Universal_CA.pem
3179-2014-08-14 14:46:57 INFO install Adding debian:QuoVadis_Root_CA_2.pem
3180-2014-08-14 14:46:57 INFO install Adding debian:Comodo_Trusted_Services_root.pem
3181-2014-08-14 14:46:57 INFO install Adding debian:ValiCert_Class_1_VA.pem
3182-2014-08-14 14:46:57 INFO install Adding debian:AffirmTrust_Premium_ECC.pem
3183-2014-08-14 14:46:57 INFO install Adding debian:QuoVadis_Root_CA_3.pem
3184-2014-08-14 14:46:57 INFO install Adding debian:NetLock_Business_=Class_B=_Root.pem
3185-2014-08-14 14:46:57 INFO install Adding debian:ePKI_Root_Certification_Authority.pem
3186-2014-08-14 14:46:57 INFO install Adding debian:GeoTrust_Primary_Certification_Authority_-_G3.pem
3187-2014-08-14 14:46:57 INFO install Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority.pem
3188-2014-08-14 14:46:57 INFO install Adding debian:Buypass_Class_3_CA_1.pem
3189-2014-08-14 14:46:57 INFO install Warning: there was a problem reading the certificate file /etc/ssl/certs/Certinomis_-_Autorit??_Racine.pem. Message:
3190-2014-08-14 14:46:57 INFO install /etc/ssl/certs/Certinomis_-_Autorit??_Racine.pem (No such file or directory)
3191-2014-08-14 14:46:57 INFO install Adding debian:UTN_USERFirst_Email_Root_CA.pem
3192-2014-08-14 14:46:57 INFO install Adding debian:QuoVadis_Root_CA.pem
3193-2014-08-14 14:46:57 INFO install Adding debian:NetLock_Qualified_=Class_QA=_Root.pem
3194-2014-08-14 14:46:57 INFO install Adding debian:CA_Disig_Root_R1.pem
3195-2014-08-14 14:46:57 INFO install Adding debian:Thawte_Server_CA.pem
3196-2014-08-14 14:46:57 INFO install Adding debian:Camerfirma_Global_Chambersign_Root.pem
3197-2014-08-14 14:46:57 INFO install Adding debian:COMODO_ECC_Certification_Authority.pem
3198-2014-08-14 14:46:57 INFO install Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
3199-2014-08-14 14:46:57 INFO install Adding debian:VeriSign_Universal_Root_Certification_Authority.pem
3200-2014-08-14 14:46:57 INFO install Adding debian:WellsSecure_Public_Root_Certificate_Authority.pem
3201-2014-08-14 14:46:57 INFO install Adding debian:Microsec_e-Szigno_Root_CA.pem
3202-2014-08-14 14:46:57 INFO install Adding debian:UTN_USERFirst_Hardware_Root_CA.pem
3203-2014-08-14 14:46:58 INFO install done.
3204-2014-08-14 14:46:58 INFO install Setting up openjdk-6-jre-lib (6b32-1.13.4-4ubuntu0.12.04.2) ...
3205-2014-08-14 14:46:58 INFO install Setting up libatk-wrapper-java (0.30.4-0ubuntu2) ...
3206-2014-08-14 14:46:58 INFO install Setting up libatk-wrapper-java-jni (0.30.4-0ubuntu2) ...
3207-2014-08-14 14:46:58 INFO install Processing triggers for libc-bin ...
3208-2014-08-14 14:46:58 INFO install ldconfig deferred processing now taking place
3209-2014-08-14 14:46:58 INFO install + install_tools
3210-2014-08-14 14:46:58 INFO install + juju-log 'Installing tools...'
3211-2014-08-14 14:46:58 INFO juju-log Installing tools...
3212-2014-08-14 14:46:58 INFO install ++ config-get tools
3213-2014-08-14 14:46:58 INFO install + apt-get -y install -qq git gcc make bzr lynx iptraf multitail nmap nload
3214-2014-08-14 14:46:59 INFO install Selecting previously unselected package libgomp1.
3215-2014-08-14 14:47:00 INFO install (Reading database ... 50629 files and directories currently installed.)
3216-2014-08-14 14:47:00 INFO install Unpacking libgomp1 (from .../libgomp1_4.6.3-1ubuntu5_amd64.deb) ...
3217-2014-08-14 14:47:00 INFO install Selecting previously unselected package liblua5.1-0.
3218-2014-08-14 14:47:00 INFO install Unpacking liblua5.1-0 (from .../liblua5.1-0_5.1.4-12ubuntu1_amd64.deb) ...
3219-2014-08-14 14:47:00 INFO install Selecting previously unselected package libmpfr4.
3220-2014-08-14 14:47:00 INFO install Unpacking libmpfr4 (from .../libmpfr4_3.1.0-3ubuntu2_amd64.deb) ...
3221-2014-08-14 14:47:00 INFO install Selecting previously unselected package libquadmath0.
3222-2014-08-14 14:47:00 INFO install Unpacking libquadmath0 (from .../libquadmath0_4.6.3-1ubuntu5_amd64.deb) ...
3223-2014-08-14 14:47:00 INFO install Selecting previously unselected package libmpc2.
3224-2014-08-14 14:47:00 INFO install Unpacking libmpc2 (from .../libmpc2_0.9-4_amd64.deb) ...
3225-2014-08-14 14:47:00 INFO install Selecting previously unselected package binutils.
3226-2014-08-14 14:47:00 INFO install Unpacking binutils (from .../binutils_2.22-6ubuntu1.1_amd64.deb) ...
3227-2014-08-14 14:47:00 INFO install Selecting previously unselected package python-bzrlib.
3228-2014-08-14 14:47:00 INFO install Unpacking python-bzrlib (from .../python-bzrlib_2.5.1-0ubuntu2_amd64.deb) ...
3229-2014-08-14 14:47:00 INFO install Selecting previously unselected package bzr.
3230-2014-08-14 14:47:00 INFO install Unpacking bzr (from .../bzr_2.5.1-0ubuntu2_all.deb) ...
3231-2014-08-14 14:47:00 INFO install Selecting previously unselected package cpp-4.6.
3232-2014-08-14 14:47:00 INFO install Unpacking cpp-4.6 (from .../cpp-4.6_4.6.3-1ubuntu5_amd64.deb) ...
3233-2014-08-14 14:47:01 INFO install Selecting previously unselected package cpp.
3234-2014-08-14 14:47:01 INFO install Unpacking cpp (from .../cpp_4%3a4.6.3-1ubuntu5_amd64.deb) ...
3235-2014-08-14 14:47:01 INFO install Selecting previously unselected package gcc-4.6.
3236-2014-08-14 14:47:01 INFO install Unpacking gcc-4.6 (from .../gcc-4.6_4.6.3-1ubuntu5_amd64.deb) ...
3237-2014-08-14 14:47:01 INFO install Selecting previously unselected package gcc.
3238-2014-08-14 14:47:01 INFO install Unpacking gcc (from .../gcc_4%3a4.6.3-1ubuntu5_amd64.deb) ...
3239-2014-08-14 14:47:01 INFO install Selecting previously unselected package iptraf.
3240-2014-08-14 14:47:01 INFO install Unpacking iptraf (from .../iptraf_3.0.0-8_amd64.deb) ...
3241-2014-08-14 14:47:01 INFO install Selecting previously unselected package libc-dev-bin.
3242-2014-08-14 14:47:01 INFO install Unpacking libc-dev-bin (from .../libc-dev-bin_2.15-0ubuntu10.6_amd64.deb) ...
3243-2014-08-14 14:47:01 INFO install Selecting previously unselected package linux-libc-dev.
3244-2014-08-14 14:47:01 INFO install Unpacking linux-libc-dev (from .../linux-libc-dev_3.2.0-67.101_amd64.deb) ...
3245-2014-08-14 14:47:01 INFO install Selecting previously unselected package libc6-dev.
3246-2014-08-14 14:47:01 INFO install Unpacking libc6-dev (from .../libc6-dev_2.15-0ubuntu10.6_amd64.deb) ...
3247-2014-08-14 14:47:02 INFO install Selecting previously unselected package make.
3248-2014-08-14 14:47:02 INFO install Unpacking make (from .../make_3.81-8.1ubuntu1.1_amd64.deb) ...
3249-2014-08-14 14:47:02 INFO install Selecting previously unselected package manpages-dev.
3250-2014-08-14 14:47:02 INFO install Unpacking manpages-dev (from .../manpages-dev_3.35-0.1ubuntu1_all.deb) ...
3251-2014-08-14 14:47:02 INFO install Selecting previously unselected package multitail.
3252-2014-08-14 14:47:02 INFO install Unpacking multitail (from .../multitail_5.2.8-1_amd64.deb) ...
3253-2014-08-14 14:47:02 INFO install Selecting previously unselected package lynx-cur.
3254-2014-08-14 14:47:02 INFO install Unpacking lynx-cur (from .../lynx-cur_2.8.8dev.9-2ubuntu0.12.04.1_amd64.deb) ...
3255-2014-08-14 14:47:02 INFO install Selecting previously unselected package lynx.
3256-2014-08-14 14:47:02 INFO install Unpacking lynx (from .../lynx_2.8.8dev.9-2ubuntu0.12.04.1_all.deb) ...
3257-2014-08-14 14:47:02 INFO install Selecting previously unselected package nload.
3258-2014-08-14 14:47:02 INFO install Unpacking nload (from .../nload_0.7.3-1_amd64.deb) ...
3259-2014-08-14 14:47:02 INFO install Selecting previously unselected package nmap.
3260-2014-08-14 14:47:02 INFO install Unpacking nmap (from .../nmap_5.21-1.1ubuntu1_amd64.deb) ...
3261-2014-08-14 14:47:03 INFO install Processing triggers for man-db ...
3262-2014-08-14 14:47:05 INFO install Setting up libgomp1 (4.6.3-1ubuntu5) ...
3263-2014-08-14 14:47:05 INFO install Setting up liblua5.1-0 (5.1.4-12ubuntu1) ...
3264-2014-08-14 14:47:05 INFO install Setting up libmpfr4 (3.1.0-3ubuntu2) ...
3265-2014-08-14 14:47:05 INFO install Setting up libquadmath0 (4.6.3-1ubuntu5) ...
3266-2014-08-14 14:47:05 INFO install Setting up libmpc2 (0.9-4) ...
3267-2014-08-14 14:47:05 INFO install Setting up binutils (2.22-6ubuntu1.1) ...
3268-2014-08-14 14:47:05 INFO install Setting up python-bzrlib (2.5.1-0ubuntu2) ...
3269-2014-08-14 14:47:06 INFO install Setting up bzr (2.5.1-0ubuntu2) ...
3270-2014-08-14 14:47:06 INFO install Setting up cpp-4.6 (4.6.3-1ubuntu5) ...
3271-2014-08-14 14:47:06 INFO install Setting up cpp (4:4.6.3-1ubuntu5) ...
3272-2014-08-14 14:47:06 INFO install Setting up gcc-4.6 (4.6.3-1ubuntu5) ...
3273-2014-08-14 14:47:07 INFO install Setting up gcc (4:4.6.3-1ubuntu5) ...
3274-2014-08-14 14:47:07 INFO install Setting up iptraf (3.0.0-8) ...
3275-2014-08-14 14:47:07 INFO install Setting up libc-dev-bin (2.15-0ubuntu10.6) ...
3276-2014-08-14 14:47:07 INFO install Setting up linux-libc-dev (3.2.0-67.101) ...
3277-2014-08-14 14:47:07 INFO install Setting up libc6-dev (2.15-0ubuntu10.6) ...
3278-2014-08-14 14:47:07 INFO install Setting up make (3.81-8.1ubuntu1.1) ...
3279-2014-08-14 14:47:07 INFO install Setting up manpages-dev (3.35-0.1ubuntu1) ...
3280-2014-08-14 14:47:07 INFO install Setting up multitail (5.2.8-1) ...
3281-2014-08-14 14:47:07 INFO install Setting up lynx-cur (2.8.8dev.9-2ubuntu0.12.04.1) ...
3282-2014-08-14 14:47:07 INFO install update-alternatives: using /usr/bin/lynx to provide /usr/bin/www-browser (www-browser) in auto mode.
3283-2014-08-14 14:47:07 INFO install Setting up lynx (2.8.8dev.9-2ubuntu0.12.04.1) ...
3284-2014-08-14 14:47:07 INFO install Setting up nload (0.7.3-1) ...
3285-2014-08-14 14:47:07 INFO install Setting up nmap (5.21-1.1ubuntu1) ...
3286-2014-08-14 14:47:07 INFO install Processing triggers for libc-bin ...
3287-2014-08-14 14:47:07 INFO install ldconfig deferred processing now taking place
3288-2014-08-14 14:47:07 INFO install + install_extra_hooks
3289-2014-08-14 14:47:07 INFO install + juju-log 'Installing hooks...'
3290-2014-08-14 14:47:07 INFO juju-log Installing hooks...
3291-2014-08-14 14:47:07 INFO install + [[ -d hooks/install.d ]]
3292-2014-08-14 14:47:07 INFO install ++ ls -1 hooks/install.d/README.md
3293-2014-08-14 14:47:07 INFO install + for i in '$(ls -1 hooks/install.d/*)'
3294-2014-08-14 14:47:07 INFO install + [[ -x hooks/install.d/README.md ]]
3295-2014-08-14 14:47:07 INFO install + exit 0
3296-2014-08-14 14:47:07 INFO config-changed + install_slave
3297-2014-08-14 14:47:07 INFO config-changed + juju-log 'Installing jenkins-slave...'
3298-2014-08-14 14:47:07 INFO juju-log Installing jenkins-slave...
3299-2014-08-14 14:47:07 INFO config-changed + [[ ! -f /etc/init/jenkins-slave.conf ]]
3300-2014-08-14 14:47:07 INFO config-changed + juju-log 'Jenkins-slave is already installed'
3301-2014-08-14 14:47:07 INFO juju-log Jenkins-slave is already installed
3302-2014-08-14 14:47:07 INFO config-changed + install_tools
3303-2014-08-14 14:47:07 INFO config-changed + juju-log 'Installing tools...'
3304-2014-08-14 14:47:07 INFO juju-log Installing tools...
3305-2014-08-14 14:47:07 INFO config-changed ++ config-get tools
3306-2014-08-14 14:47:07 INFO config-changed + apt-get -y install -qq git gcc make bzr lynx iptraf multitail nmap nload
3307-2014-08-14 14:47:08 INFO config-changed + install_extra_hooks
3308-2014-08-14 14:47:08 INFO config-changed + juju-log 'Installing hooks...'
3309-2014-08-14 14:47:08 INFO juju-log Installing hooks...
3310-2014-08-14 14:47:08 INFO config-changed + [[ -d hooks/install.d ]]
3311-2014-08-14 14:47:08 INFO config-changed ++ ls -1 hooks/install.d/README.md
3312-2014-08-14 14:47:08 INFO config-changed + for i in '$(ls -1 hooks/install.d/*)'
3313-2014-08-14 14:47:08 INFO config-changed + [[ -x hooks/install.d/README.md ]]
3314-2014-08-14 14:47:08 INFO config-changed + exit 0
3315-2014-08-14 14:47:08 INFO start jenkins-slave stop/waiting
3316-2014-08-14 14:47:08 WARNING juju.worker.uniter.charm git_deployer.go:200 no current staging repo
3317-2014-08-14 14:47:26 INFO juju-log slave:0: Configuring jenkins-slave with http://10.5.9.60:8080...
3318-2014-08-14 14:47:26 INFO juju-log slave:0: Restarting jenkins-slave...
3319-2014-08-14 14:47:27 INFO slave-relation-changed jenkins-slave start/running, process 11418
3320
3321=== added directory 'deployment/jobs/_juju_bootstrap_this'
3322=== added file 'deployment/jobs/_juju_bootstrap_this/config.xml'
3323--- deployment/jobs/_juju_bootstrap_this/config.xml 1970-01-01 00:00:00 +0000
3324+++ deployment/jobs/_juju_bootstrap_this/config.xml 2014-10-06 20:55:43 +0000
3325@@ -0,0 +1,73 @@
3326+<?xml version='1.0' encoding='UTF-8'?>
3327+<project>
3328+ <actions/>
3329+ <description>* juju bootstrap a single or multiple nodes&#xd;
3330+* no destroy!&#xd;
3331+* useful in troubleshooting&#xd;
3332+</description>
3333+ <logRotator class="hudson.tasks.LogRotator">
3334+ <daysToKeep>90</daysToKeep>
3335+ <numToKeep>-1</numToKeep>
3336+ <artifactDaysToKeep>-1</artifactDaysToKeep>
3337+ <artifactNumToKeep>-1</artifactNumToKeep>
3338+ </logRotator>
3339+ <keepDependencies>false</keepDependencies>
3340+ <properties>
3341+ <hudson.model.ParametersDefinitionProperty>
3342+ <parameterDefinitions>
3343+ <org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition plugin="nodelabelparameter@1.5.1">
3344+ <name>NODE_NAME</name>
3345+ <description></description>
3346+ <allowedSlaves>
3347+ <string>ALL (no restriction)</string>
3348+ </allowedSlaves>
3349+ <defaultSlaves/>
3350+ <triggerIfResult>allowMultiSelectionForConcurrentBuilds</triggerIfResult>
3351+ <allowMultiNodeSelection>true</allowMultiNodeSelection>
3352+ <triggerConcurrentBuilds>true</triggerConcurrentBuilds>
3353+ <ignoreOfflineNodes>false</ignoreOfflineNodes>
3354+ <nodeEligibility class="org.jvnet.jenkins.plugins.nodelabelparameter.node.AllNodeEligibility"/>
3355+ </org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition>
3356+ </parameterDefinitions>
3357+ </hudson.model.ParametersDefinitionProperty>
3358+ <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.22">
3359+ <autoRebuild>false</autoRebuild>
3360+ </com.sonyericsson.rebuild.RebuildSettings>
3361+ <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3362+ <maxConcurrentPerNode>0</maxConcurrentPerNode>
3363+ <maxConcurrentTotal>0</maxConcurrentTotal>
3364+ <throttleEnabled>false</throttleEnabled>
3365+ <throttleOption>project</throttleOption>
3366+ </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3367+ <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3368+ </properties>
3369+ <scm class="hudson.scm.NullSCM"/>
3370+ <canRoam>true</canRoam>
3371+ <disabled>false</disabled>
3372+ <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
3373+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
3374+ <triggers/>
3375+ <concurrentBuild>true</concurrentBuild>
3376+ <builders>
3377+ <hudson.tasks.Shell>
3378+ <command>#!/bin/bash -e
3379+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
3380+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
3381+${OSCI_ROOT}/job-parts/juju_cleanup.sh
3382+${OSCI_ROOT}/job-parts/juju_bootstrap_this.sh</command>
3383+ </hudson.tasks.Shell>
3384+ </builders>
3385+ <publishers>
3386+ <hudson.tasks.ArtifactArchiver>
3387+ <artifacts>*</artifacts>
3388+ <latestOnly>false</latestOnly>
3389+ <allowEmptyArchive>false</allowEmptyArchive>
3390+ </hudson.tasks.ArtifactArchiver>
3391+ </publishers>
3392+ <buildWrappers>
3393+ <hudson.plugins.timestamper.TimestamperBuildWrapper plugin="timestamper@1.5.14"/>
3394+ <org.jenkinsci.plugins.buildnamesetter.BuildNameSetter plugin="build-name-setter@1.3">
3395+ <template>#${BUILD_NUMBER} ${ENV,var=&quot;NODE_NAME&quot;}</template>
3396+ </org.jenkinsci.plugins.buildnamesetter.BuildNameSetter>
3397+ </buildWrappers>
3398+</project>
3399\ No newline at end of file
3400
3401=== modified file 'deployment/jobs/_juju_destroy_this/config.xml'
3402--- deployment/jobs/_juju_destroy_this/config.xml 2014-10-02 15:18:00 +0000
3403+++ deployment/jobs/_juju_destroy_this/config.xml 2014-10-06 20:55:43 +0000
3404@@ -2,7 +2,8 @@
3405 <project>
3406 <actions/>
3407 <description>* gather juju status &amp; nova list as artifacts&#xd;
3408-* juju destroy a single selected node&apos;s default juju environment&#xd;
3409+* juju destroy environments on a single node or multiple nodes&#xd;
3410+* useful in troubleshooting&#xd;
3411 </description>
3412 <logRotator class="hudson.tasks.LogRotator">
3413 <daysToKeep>90</daysToKeep>
3414@@ -35,10 +36,8 @@
3415 <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3416 <maxConcurrentPerNode>0</maxConcurrentPerNode>
3417 <maxConcurrentTotal>0</maxConcurrentTotal>
3418- <categories/>
3419 <throttleEnabled>false</throttleEnabled>
3420 <throttleOption>project</throttleOption>
3421- <configVersion>1</configVersion>
3422 </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3423 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3424 </properties>
3425@@ -50,28 +49,17 @@
3426 <triggers/>
3427 <concurrentBuild>true</concurrentBuild>
3428 <builders>
3429- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
3430- <projectName>_workspace_cleanup</projectName>
3431- </hudson.plugins.templateproject.ProxyBuilder>
3432 <hudson.tasks.Shell>
3433 <command>#!/bin/bash -e
3434-d_str=$(date +&apos;%H%M%S&apos;)
3435-. $HOME/novarc
3436-env | sort 2&gt;&amp;1 | tee env.${d_str}
3437-juju stat 2&gt;&amp;1 | tee jujustat.yaml.${d_str}
3438-nova list 2&gt;&amp;1 | tee novalist.${d_str}
3439-THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
3440-echo &quot;Destroying juju environment ${THIS_ENV} on ${NODE_NAME}...&quot;
3441-juju destroy-environment -y $THIS_ENV</command>
3442+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
3443+${OSCI_ROOT}/job-parts/juju_destroy_this.sh</command>
3444 </hudson.tasks.Shell>
3445 </builders>
3446 <publishers>
3447 <hudson.tasks.ArtifactArchiver>
3448 <artifacts>*</artifacts>
3449+ <latestOnly>false</latestOnly>
3450 <allowEmptyArchive>false</allowEmptyArchive>
3451- <onlyIfSuccessful>false</onlyIfSuccessful>
3452- <fingerprint>false</fingerprint>
3453- <defaultExcludes>true</defaultExcludes>
3454 </hudson.tasks.ArtifactArchiver>
3455 </publishers>
3456 <buildWrappers>
3457
3458=== modified file 'deployment/jobs/_juju_stat_this/config.xml'
3459--- deployment/jobs/_juju_stat_this/config.xml 2014-10-02 15:18:00 +0000
3460+++ deployment/jobs/_juju_stat_this/config.xml 2014-10-06 20:55:43 +0000
3461@@ -1,8 +1,9 @@
3462 <?xml version='1.0' encoding='UTF-8'?>
3463 <project>
3464 <actions/>
3465- <description>juju stat a node&#xd;
3466-</description>
3467+ <description>* juju stat a single node or multiple nodes&#xd;
3468+* no destroy, just a probe&#xd;
3469+* useful in troubleshooting</description>
3470 <logRotator class="hudson.tasks.LogRotator">
3471 <daysToKeep>90</daysToKeep>
3472 <numToKeep>-1</numToKeep>
3473@@ -34,10 +35,8 @@
3474 <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3475 <maxConcurrentPerNode>0</maxConcurrentPerNode>
3476 <maxConcurrentTotal>0</maxConcurrentTotal>
3477- <categories/>
3478 <throttleEnabled>false</throttleEnabled>
3479 <throttleOption>project</throttleOption>
3480- <configVersion>1</configVersion>
3481 </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3482 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3483 </properties>
3484@@ -49,23 +48,18 @@
3485 <triggers/>
3486 <concurrentBuild>true</concurrentBuild>
3487 <builders>
3488- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
3489- <projectName>_workspace_cleanup</projectName>
3490- </hudson.plugins.templateproject.ProxyBuilder>
3491 <hudson.tasks.Shell>
3492 <command>#!/bin/bash -e
3493-d_str=$(date +&apos;%H%M%S&apos;)
3494-env | sort 2&gt;&amp;1 | tee env.${d_str}
3495-juju stat 2&gt;&amp;1 | tee jujustat.yaml.${d_str}</command>
3496+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
3497+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
3498+${OSCI_ROOT}/job-parts/juju_stat_this.sh</command>
3499 </hudson.tasks.Shell>
3500 </builders>
3501 <publishers>
3502 <hudson.tasks.ArtifactArchiver>
3503 <artifacts>*</artifacts>
3504- <allowEmptyArchive>false</allowEmptyArchive>
3505- <onlyIfSuccessful>false</onlyIfSuccessful>
3506- <fingerprint>false</fingerprint>
3507- <defaultExcludes>true</defaultExcludes>
3508+ <latestOnly>false</latestOnly>
3509+ <allowEmptyArchive>true</allowEmptyArchive>
3510 </hudson.tasks.ArtifactArchiver>
3511 <hudson.tasks.Mailer plugin="mailer@1.11">
3512 <recipients>ryan.beisner@canonical.com</recipients>
3513
3514=== modified file 'deployment/jobs/_system_nova_list/config.xml'
3515--- deployment/jobs/_system_nova_list/config.xml 2014-10-02 15:18:00 +0000
3516+++ deployment/jobs/_system_nova_list/config.xml 2014-10-06 20:55:43 +0000
3517@@ -35,10 +35,8 @@
3518 <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3519 <maxConcurrentPerNode>0</maxConcurrentPerNode>
3520 <maxConcurrentTotal>0</maxConcurrentTotal>
3521- <categories/>
3522 <throttleEnabled>false</throttleEnabled>
3523 <throttleOption>project</throttleOption>
3524- <configVersion>1</configVersion>
3525 </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3526 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3527 </properties>
3528@@ -50,24 +48,17 @@
3529 <triggers/>
3530 <concurrentBuild>true</concurrentBuild>
3531 <builders>
3532- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
3533- <projectName>_workspace_cleanup</projectName>
3534- </hudson.plugins.templateproject.ProxyBuilder>
3535 <hudson.tasks.Shell>
3536 <command>#!/bin/bash -e
3537-d_str=$(date +&apos;%H%M%S&apos;)
3538-. $HOME/novarc
3539-env | grep -v &quot;PASSWORD&quot; | sort 2&gt;&amp;1 | tee env.${d_str}
3540-nova list 2&gt;&amp;1 | tee novalist.${d_str}</command>
3541+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
3542+${OSCI_ROOT}/job-parts/nova_list_this.sh</command>
3543 </hudson.tasks.Shell>
3544 </builders>
3545 <publishers>
3546 <hudson.tasks.ArtifactArchiver>
3547 <artifacts>*</artifacts>
3548+ <latestOnly>false</latestOnly>
3549 <allowEmptyArchive>false</allowEmptyArchive>
3550- <onlyIfSuccessful>false</onlyIfSuccessful>
3551- <fingerprint>false</fingerprint>
3552- <defaultExcludes>true</defaultExcludes>
3553 </hudson.tasks.ArtifactArchiver>
3554 <hudson.tasks.Mailer plugin="mailer@1.11">
3555 <recipients>ryan.beisner@canonical.com</recipients>
3556
3557=== added directory 'deployment/jobs/_system_tools_init'
3558=== added file 'deployment/jobs/_system_tools_init/config.xml'
3559--- deployment/jobs/_system_tools_init/config.xml 1970-01-01 00:00:00 +0000
3560+++ deployment/jobs/_system_tools_init/config.xml 2014-10-06 20:55:43 +0000
3561@@ -0,0 +1,103 @@
3562+<?xml version='1.0' encoding='UTF-8'?>
3563+<project>
3564+ <actions/>
3565+ <description>Use to initialize tools branches on master and slave nodes. Chicken, egg, chicken. Gotta have code there for the other jobs to call.</description>
3566+ <logRotator class="hudson.tasks.LogRotator">
3567+ <daysToKeep>-1</daysToKeep>
3568+ <numToKeep>100</numToKeep>
3569+ <artifactDaysToKeep>90</artifactDaysToKeep>
3570+ <artifactNumToKeep>90</artifactNumToKeep>
3571+ </logRotator>
3572+ <keepDependencies>false</keepDependencies>
3573+ <properties>
3574+ <hudson.model.ParametersDefinitionProperty>
3575+ <parameterDefinitions>
3576+ <org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition plugin="nodelabelparameter@1.5.1">
3577+ <name>Concurrent Multiple Nodes</name>
3578+ <description></description>
3579+ <allowedSlaves>
3580+ <string>ALL (no restriction)</string>
3581+ </allowedSlaves>
3582+ <defaultSlaves/>
3583+ <triggerIfResult>allowMultiSelectionForConcurrentBuilds</triggerIfResult>
3584+ <allowMultiNodeSelection>true</allowMultiNodeSelection>
3585+ <triggerConcurrentBuilds>true</triggerConcurrentBuilds>
3586+ <ignoreOfflineNodes>false</ignoreOfflineNodes>
3587+ <nodeEligibility class="org.jvnet.jenkins.plugins.nodelabelparameter.node.AllNodeEligibility"/>
3588+ </org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition>
3589+ </parameterDefinitions>
3590+ </hudson.model.ParametersDefinitionProperty>
3591+ <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.22">
3592+ <autoRebuild>false</autoRebuild>
3593+ </com.sonyericsson.rebuild.RebuildSettings>
3594+ <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3595+ <maxConcurrentPerNode>0</maxConcurrentPerNode>
3596+ <maxConcurrentTotal>0</maxConcurrentTotal>
3597+ <throttleEnabled>false</throttleEnabled>
3598+ <throttleOption>project</throttleOption>
3599+ </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3600+ <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3601+ </properties>
3602+ <scm class="hudson.scm.NullSCM"/>
3603+ <canRoam>true</canRoam>
3604+ <disabled>false</disabled>
3605+ <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
3606+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
3607+ <triggers/>
3608+ <concurrentBuild>true</concurrentBuild>
3609+ <builders>
3610+ <hudson.tasks.Shell>
3611+ <command>#!/bin/bash -e
3612+echo $0
3613+
3614+echo &quot;General node info:&quot;
3615+set -x
3616+env | egrep &apos;_ROOT|_REPO|NODE&apos; | sort
3617+uname -a
3618+uptime
3619+ip addr | grep gl
3620+/sbin/route -n
3621+df -h
3622+free -m
3623+lsb_release -d
3624+set +x
3625+
3626+# keep openstack_ubuntu_testing fresh
3627+if [[ -d $OPENSTACK_UBUNTU_ROOT ]]; then
3628+ echo &quot;Removing existing checkout of $OPENSTACK_UBUNTU_REPO @ $OPENSTACK_UBUNTU_ROOT&quot;
3629+ rm -rf $OPENSTACK_UBUNTU_ROOT
3630+fi
3631+echo &quot;Creating new lightweight checkout of $OPENSTACK_UBUNTU_REPO @ $OPENSTACK_UBUNTU_ROOT.&quot;
3632+bzr co --lightweight $OPENSTACK_UBUNTU_REPO $OPENSTACK_UBUNTU_ROOT
3633+
3634+# ubuntu_openstack_ci fresh
3635+if [[ -d $OSCI_ROOT ]]; then
3636+ echo &quot;Removing existing checkout of $OSCI_REPO @ $OSCI_ROOT&quot;
3637+ rm -rf $OSCI_ROOT
3638+fi
3639+echo &quot;Creating new lightweight checkout of $OSCI_REPO @ $OSCI_ROOT.&quot;
3640+bzr co --lightweight $OSCI_REPO $OSCI_ROOT
3641+
3642+# keep openstack_charm_testing fresh
3643+if [[ -d $OPENSTACK_CHARM_TESTING_ROOT ]]; then
3644+ echo &quot;Removing existing checkout of $OPENSTACK_CHARM_TESTING_REPO @ $OPENSTACK_CHARM_TESTING_ROOT&quot;
3645+ rm -rf $OPENSTACK_CHARM_TESTING_ROOT
3646+fi
3647+echo &quot;Creating new lightweight checkout of $OPENSTACK_CHARM_TESTING_REPO @ $OPENSTACK_CHARM_TESTING_ROOT.&quot;
3648+bzr co --lightweight $OPENSTACK_CHARM_TESTING_REPO $OPENSTACK_CHARM_TESTING_ROOT
3649+
3650+# keep tarmac fresh
3651+if [[ -d $TARMAC_ROOT ]]; then
3652+ echo &quot;Removing existing checkout of $TARMAC_REPO @ $TARMAC_ROOT&quot;
3653+ rm -rf $TARMAC_ROOT
3654+fi
3655+echo &quot;Creating new lightweight checkout of $TARMAC_REPO @ $TARMAC_ROOT.&quot;
3656+bzr co --lightweight $TARMAC_REPO $TARMAC_ROOT
3657+</command>
3658+ </hudson.tasks.Shell>
3659+ </builders>
3660+ <publishers/>
3661+ <buildWrappers>
3662+ <hudson.plugins.timestamper.TimestamperBuildWrapper plugin="timestamper@1.5.14"/>
3663+ </buildWrappers>
3664+</project>
3665\ No newline at end of file
3666
3667=== removed directory 'deployment/jobs/_system_tools_refresh'
3668=== removed file 'deployment/jobs/_system_tools_refresh/config.xml'
3669--- deployment/jobs/_system_tools_refresh/config.xml 2014-10-02 15:18:00 +0000
3670+++ deployment/jobs/_system_tools_refresh/config.xml 1970-01-01 00:00:00 +0000
3671@@ -1,115 +0,0 @@
3672-<?xml version='1.0' encoding='UTF-8'?>
3673-<project>
3674- <actions/>
3675- <description>Branch ubuntu-openstack-testing and others tools branches; dump misc node info; Useful in refreshing important branches, testing a new jenkins environment, or troubleshooting nodes.&#xd;
3676-</description>
3677- <logRotator class="hudson.tasks.LogRotator">
3678- <daysToKeep>-1</daysToKeep>
3679- <numToKeep>100</numToKeep>
3680- <artifactDaysToKeep>90</artifactDaysToKeep>
3681- <artifactNumToKeep>90</artifactNumToKeep>
3682- </logRotator>
3683- <keepDependencies>false</keepDependencies>
3684- <properties>
3685- <hudson.model.ParametersDefinitionProperty>
3686- <parameterDefinitions>
3687- <org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition plugin="nodelabelparameter@1.5.1">
3688- <name>Concurrent Multiple Nodes</name>
3689- <description></description>
3690- <allowedSlaves>
3691- <string>ALL (no restriction)</string>
3692- </allowedSlaves>
3693- <defaultSlaves/>
3694- <triggerIfResult>allowMultiSelectionForConcurrentBuilds</triggerIfResult>
3695- <allowMultiNodeSelection>true</allowMultiNodeSelection>
3696- <triggerConcurrentBuilds>true</triggerConcurrentBuilds>
3697- <ignoreOfflineNodes>false</ignoreOfflineNodes>
3698- <nodeEligibility class="org.jvnet.jenkins.plugins.nodelabelparameter.node.AllNodeEligibility"/>
3699- </org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition>
3700- </parameterDefinitions>
3701- </hudson.model.ParametersDefinitionProperty>
3702- <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.22">
3703- <autoRebuild>false</autoRebuild>
3704- </com.sonyericsson.rebuild.RebuildSettings>
3705- <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3706- <maxConcurrentPerNode>0</maxConcurrentPerNode>
3707- <maxConcurrentTotal>0</maxConcurrentTotal>
3708- <throttleEnabled>false</throttleEnabled>
3709- <throttleOption>project</throttleOption>
3710- </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3711- <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3712- </properties>
3713- <scm class="hudson.scm.NullSCM"/>
3714- <canRoam>true</canRoam>
3715- <disabled>false</disabled>
3716- <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
3717- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
3718- <triggers/>
3719- <concurrentBuild>true</concurrentBuild>
3720- <builders>
3721- <hudson.tasks.Shell>
3722- <command>#!/bin/bash -e
3723-env | egrep &apos;_ROOT|_REPO&apos; | sort
3724-ip addr | grep gl
3725-uptime
3726-df -h
3727-free -m
3728-uname -a
3729-lsb_release -a
3730-pwd
3731-whoami</command>
3732- </hudson.tasks.Shell>
3733- <hudson.tasks.Shell>
3734- <command>#!/bin/bash -e
3735-# keep openstack_ubuntu_testing fresh
3736-
3737-if [[ -d $OPENSTACK_UBUNTU_ROOT ]]; then
3738- echo &quot;Removing existing checkout of $OPENSTACK_UBUNTU_REPO @ $OPENSTACK_UBUNTU_ROOT&quot;
3739- rm -rf $OPENSTACK_UBUNTU_ROOT
3740-fi
3741-
3742-echo &quot;Creating new checkout of $OPENSTACK_UBUNTU_REPO @ $OPENSTACK_UBUNTU_ROOT.&quot;
3743-bzr co --lightweight $OPENSTACK_UBUNTU_REPO $OPENSTACK_UBUNTU_ROOT</command>
3744- </hudson.tasks.Shell>
3745- <hudson.tasks.Shell>
3746- <command>#!/bin/bash -e
3747-# keep ubuntu_openstack_ci fresh
3748-
3749-if [[ -d $OSCI_ROOT ]]; then
3750- echo &quot;Removing existing checkout of $OSCI_REPO @ $OSCI_ROOT&quot;
3751- rm -rf $OSCI_ROOT
3752-fi
3753-
3754-echo &quot;Creating new checkout of $OSCI_REPO @ $OSCI_ROOT.&quot;
3755-bzr co --lightweight $OSCI_REPO $OSCI_ROOT</command>
3756- </hudson.tasks.Shell>
3757- <hudson.tasks.Shell>
3758- <command>#!/bin/bash -e
3759-# keep openstack_charm_testing fresh
3760-
3761-if [[ -d $OPENSTACK_CHARM_TESTING_ROOT ]]; then
3762- echo &quot;Removing existing checkout of $OPENSTACK_CHARM_TESTING_REPO @ $OPENSTACK_CHARM_TESTING_ROOT&quot;
3763- rm -rf $OPENSTACK_CHARM_TESTING_ROOT
3764-fi
3765-
3766-echo &quot;Creating new checkout of $OPENSTACK_CHARM_TESTING_REPO @ $OPENSTACK_CHARM_TESTING_ROOT.&quot;
3767-bzr co --lightweight $OPENSTACK_CHARM_TESTING_REPO $OPENSTACK_CHARM_TESTING_ROOT</command>
3768- </hudson.tasks.Shell>
3769- <hudson.tasks.Shell>
3770- <command>#!/bin/bash -e
3771-# keep tarmac fresh
3772-
3773-if [[ -d $TARMAC_ROOT ]]; then
3774- echo &quot;Removing existing checkout of $TARMAC_REPO @ $TARMAC_ROOT&quot;
3775- rm -rf $TARMAC_ROOT
3776-fi
3777-
3778-echo &quot;Creating new checkout of $TARMAC_REPO @ $TARMAC_ROOT.&quot;
3779-bzr co --lightweight $TARMAC_REPO $TARMAC_ROOT</command>
3780- </hudson.tasks.Shell>
3781- </builders>
3782- <publishers/>
3783- <buildWrappers>
3784- <hudson.plugins.timestamper.TimestamperBuildWrapper plugin="timestamper@1.5.14"/>
3785- </buildWrappers>
3786-</project>
3787\ No newline at end of file
3788
3789=== modified file 'deployment/jobs/_workspace_cleanup/config.xml'
3790--- deployment/jobs/_workspace_cleanup/config.xml 2014-10-02 15:18:00 +0000
3791+++ deployment/jobs/_workspace_cleanup/config.xml 2014-10-06 20:55:43 +0000
3792@@ -2,7 +2,8 @@
3793 <project>
3794 <actions/>
3795 <description>* Deep cleaning of WORKSPACE (recursive delete!)&#xd;
3796-* Use as a build step, not intended to be run directly</description>
3797+* Can be used as a build step in other jobs&#xd;
3798+* Also useful as a manual step to clean up one or multiple nodes</description>
3799 <logRotator class="hudson.tasks.LogRotator">
3800 <daysToKeep>-1</daysToKeep>
3801 <numToKeep>100</numToKeep>
3802@@ -11,6 +12,23 @@
3803 </logRotator>
3804 <keepDependencies>false</keepDependencies>
3805 <properties>
3806+ <hudson.model.ParametersDefinitionProperty>
3807+ <parameterDefinitions>
3808+ <org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition plugin="nodelabelparameter@1.5.1">
3809+ <name>NODE_NAME</name>
3810+ <description></description>
3811+ <allowedSlaves>
3812+ <string>ALL (no restriction)</string>
3813+ </allowedSlaves>
3814+ <defaultSlaves/>
3815+ <triggerIfResult>allowMultiSelectionForConcurrentBuilds</triggerIfResult>
3816+ <allowMultiNodeSelection>true</allowMultiNodeSelection>
3817+ <triggerConcurrentBuilds>true</triggerConcurrentBuilds>
3818+ <ignoreOfflineNodes>false</ignoreOfflineNodes>
3819+ <nodeEligibility class="org.jvnet.jenkins.plugins.nodelabelparameter.node.AllNodeEligibility"/>
3820+ </org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition>
3821+ </parameterDefinitions>
3822+ </hudson.model.ParametersDefinitionProperty>
3823 <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.22">
3824 <autoRebuild>false</autoRebuild>
3825 </com.sonyericsson.rebuild.RebuildSettings>
3826@@ -28,22 +46,11 @@
3827 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
3828 <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
3829 <triggers/>
3830- <concurrentBuild>false</concurrentBuild>
3831+ <concurrentBuild>true</concurrentBuild>
3832 <builders>
3833 <hudson.tasks.Shell>
3834 <command>#!/bin/bash -e
3835-echo &quot;Checking workspace: ${WORKSPACE} for ${JOB_NAME} on ${NODE_NAME}...&quot;
3836-if [[ -d &quot;$WORKSPACE&quot; ]]; then
3837- if [[ -n &quot;$(echo $WORKSPACE | grep &apos;/var/lib/jenkins&apos;)&quot; ]]; then
3838- echo &quot;Removing workspace items...&quot;
3839- rm -rfv $WORKSPACE/*
3840- else
3841- echo &quot;WORKSPACE is not subdir of HOME, removed nothing!&quot;
3842- fi
3843-else
3844- echo &quot;WORKSPACE directory doesn&apos;t exist, removed nothing!&quot;
3845-fi
3846-du -hsc $WORKSPACE</command>
3847+${OSCI_ROOT}/job-parts/workspace_cleanup.sh</command>
3848 </hudson.tasks.Shell>
3849 </builders>
3850 <publishers/>
3851
3852=== modified file 'deployment/jobs/charm_amulet_test/config.xml'
3853--- deployment/jobs/charm_amulet_test/config.xml 2014-10-02 16:08:07 +0000
3854+++ deployment/jobs/charm_amulet_test/config.xml 2014-10-06 20:55:43 +0000
3855@@ -36,14 +36,14 @@
3856 </com.sonyericsson.rebuild.RebuildSettings>
3857 <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
3858 <maxConcurrentPerNode>1</maxConcurrentPerNode>
3859- <maxConcurrentTotal>4</maxConcurrentTotal>
3860+ <maxConcurrentTotal>6</maxConcurrentTotal>
3861 <throttleEnabled>true</throttleEnabled>
3862 <throttleOption>project</throttleOption>
3863 </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
3864 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
3865 </properties>
3866 <scm class="hudson.scm.NullSCM"/>
3867- <assignedNode>x86_64</assignedNode>
3868+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
3869 <canRoam>false</canRoam>
3870 <disabled>false</disabled>
3871 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
3872@@ -51,134 +51,32 @@
3873 <triggers/>
3874 <concurrentBuild>true</concurrentBuild>
3875 <builders>
3876- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
3877- <projectName>_workspace_cleanup</projectName>
3878- </hudson.plugins.templateproject.ProxyBuilder>
3879- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
3880- <projectName>_system_tools_refresh</projectName>
3881- </hudson.plugins.templateproject.ProxyBuilder>
3882- <hudson.tasks.Shell>
3883- <command>#!/bin/bash -e
3884-# Make sure node has no juju environment is already bootstrapped on node
3885-
3886-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
3887-echo $juju_ok
3888-
3889-if [[ &quot;$juju_ok&quot; == *CLEAR:* ]]; then
3890- echo &quot;Juju environment is clear on ${NODE_NAME}, proceeding.&quot;
3891-else
3892- echo &quot;An environment already exists on ${NODE_NAME}!&quot;
3893- #touch $WORKSPACE/fyi.enviro-pre-check.failed
3894- . $JENKINS_HOME/novarc
3895- nova list &amp;&gt; $WORKSPACE/novalist-asfound.$BUILD_NUMBER
3896- juju stat &amp;&gt; $WORKSPACE/jujustat-asfound.yaml.$BUILD_NUMBER
3897- # Tear down
3898- echo &quot;Attempting juju enviro destroy of ${THIS_ENV} on ${NODE_NAME}...&quot;
3899- THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
3900- juju destroy-environment -y $THIS_ENV
3901- #ls -alh $WORKSPACE
3902- #exit 1
3903-fi
3904-</command>
3905- </hudson.tasks.Shell>
3906- <hudson.tasks.Shell>
3907- <command>#!/bin/bash -e
3908-
3909-env | sort 2&gt;&amp;1 | tee $WORKSPACE/env.$BUILD_NUMBER
3910-
3911-# Make sure expected env vars exist
3912-[[ -z &quot;$BASE_NAME&quot; ]] || [[ -z &quot;$BRANCH&quot; ]] &amp;&amp; { echo &quot;No BRANCH and/or BASE_NAME env vars.&quot;; exit 1; }
3913-
3914-mkdir -pv $JENKINS_HOME/checkout || true
3915-
3916-CO_DIR=$JENKINS_HOME/checkout/$BASE_NAME
3917-MAKEFILE=$CO_DIR/Makefile
3918-
3919-echo $CO_DIR
3920-echo $MAKEFILE
3921-
3922-if [[ -d $CO_DIR ]]; then
3923- echo &quot;Removing existing checkout of $BRANCH @ $CO_DIR&quot;
3924- rm -rf $CO_DIR
3925-fi
3926-
3927-echo &quot;Creating new checkout of $BRANCH @ $CO_DIR.&quot;
3928-bzr co --lightweight $BRANCH $CO_DIR
3929-
3930-[[ ! -f $MAKEFILE ]] &amp;&amp; { echo &quot;No Makefile found.&quot;; exit 1; }
3931-
3932-echo &quot;Gathering info about branch...&quot;
3933-cd $CO_DIR
3934-cp -fv Makefile $WORKSPACE/Makefile.$BUILD_NUMBER
3935-bzr revno 2&gt;&amp;1 | tee $WORKSPACE/branch-info.$BUILD_NUMBER
3936-bzr info 2&gt;&amp;1 | tee -a $WORKSPACE/branch-info.$BUILD_NUMBER
3937-
3938-echo &quot;Checking for amulet tests in Makefile...&quot;
3939-
3940-has_amulet=&quot;$(grep &quot;@juju test&quot; $MAKEFILE || true)&quot;
3941-
3942-if [[ -z $has_amulet ]]; then
3943- echo &quot;No amulet test detected in Makefile.&quot;
3944- touch $WORKSPACE/amulet-test.missing
3945- exit 1
3946-fi
3947-
3948-make test 2&gt;&amp;1 | tee $WORKSPACE/make-test.$BUILD_NUMBER
3949-if [[ &quot;${PIPESTATUS[0]}&quot; != &quot;0&quot; ]]; then
3950- echo &quot;Amulet test failed.&quot;
3951- touch $WORKSPACE/make-test.failed
3952-fi
3953-
3954-
3955-# Tear down
3956-THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
3957-juju destroy-environment -y $THIS_ENV || true
3958-ls -alh $WORKSPACE
3959-
3960-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.failed* ]]; then
3961- exit 1
3962-fi
3963-</command>
3964- </hudson.tasks.Shell>
3965- <hudson.tasks.Shell>
3966- <command>#!/bin/bash -e
3967-# Make sure we leave with no juju environment
3968-
3969-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
3970-echo $juju_ok
3971-
3972-if [[ &quot;$juju_ok&quot; == *CLEAR:* ]]; then
3973- echo &quot;Juju environment is clear on ${NODE_NAME}.&quot;
3974-else
3975- echo &quot;An unexpected environment exists on ${NODE_NAME}!&quot;
3976- touch $WORKSPACE/fyi.enviro-post-check.failed
3977- . $JENKINS_HOME/novarc
3978- nova list &amp;&gt; $WORKSPACE/novalist.$BUILD_NUMBER
3979- juju stat &amp;&gt; $WORKSPACE/jujustat.yaml.$BUILD_NUMBER
3980- # Tear down
3981- echo &quot;Attempting juju enviro destroy of ${THIS_ENV} on ${NODE_NAME}...&quot;
3982- THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
3983- juju destroy-environment -y $THIS_ENV
3984-fi
3985-
3986-# Check for failures
3987-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.failed* ]]; then
3988- exit 1
3989-fi
3990-
3991-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.missing* ]]; then
3992- exit 1
3993-fi</command>
3994+ <hudson.tasks.Shell>
3995+ <command>#!/bin/bash -e
3996+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
3997+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
3998+${OSCI_ROOT}/job-parts/juju_cleanup.sh
3999+${OSCI_ROOT}/job-parts/amulet_test.sh
4000+${OSCI_ROOT}/job-parts/juju_cleanup.sh
4001+</command>
4002 </hudson.tasks.Shell>
4003 </builders>
4004 <publishers>
4005 <hudson.tasks.ArtifactArchiver>
4006 <artifacts>*, logs/*</artifacts>
4007+ <latestOnly>false</latestOnly>
4008 <allowEmptyArchive>true</allowEmptyArchive>
4009- <onlyIfSuccessful>false</onlyIfSuccessful>
4010- <fingerprint>false</fingerprint>
4011- <defaultExcludes>true</defaultExcludes>
4012 </hudson.tasks.ArtifactArchiver>
4013+ <hudson.plugins.descriptionsetter.DescriptionSetterPublisher plugin="description-setter@1.9">
4014+ <regexp>_:.*</regexp>
4015+ <regexpForFailed>_:.*</regexpForFailed>
4016+ <setForMatrix>false</setForMatrix>
4017+ </hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
4018+ <hudson.tasks.Mailer plugin="mailer@1.11">
4019+ <recipients>ryan.beisner@canonical.com</recipients>
4020+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
4021+ <sendToIndividuals>false</sendToIndividuals>
4022+ </hudson.tasks.Mailer>
4023 </publishers>
4024 <buildWrappers>
4025 <hudson.plugins.timestamper.TimestamperBuildWrapper plugin="timestamper@1.5.14"/>
4026
4027=== modified file 'deployment/jobs/charm_lint_check/config.xml'
4028--- deployment/jobs/charm_lint_check/config.xml 2014-10-02 16:08:07 +0000
4029+++ deployment/jobs/charm_lint_check/config.xml 2014-10-06 20:55:43 +0000
4030@@ -43,7 +43,7 @@
4031 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4032 </properties>
4033 <scm class="hudson.scm.NullSCM"/>
4034- <assignedNode>x86_64</assignedNode>
4035+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4036 <canRoam>false</canRoam>
4037 <disabled>false</disabled>
4038 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4039@@ -59,56 +59,23 @@
4040 </hudson.plugins.templateproject.ProxyBuilder>
4041 <hudson.tasks.Shell>
4042 <command>#!/bin/bash -e
4043-
4044-env | sort 2&gt;&amp;1 | tee $WORKSPACE/env.$BUILD_NUMBER
4045-
4046-# Make sure expected env vars exist
4047-[[ -z &quot;$BASE_NAME&quot; ]] || [[ -z &quot;$BRANCH&quot; ]] &amp;&amp; { echo &quot;No BRANCH and/or BASE_NAME env vars.&quot;; exit 1; }
4048-
4049-mkdir -pv $JENKINS_HOME/checkout || true
4050-
4051-CO_DIR=$JENKINS_HOME/checkout/$BASE_NAME
4052-MAKEFILE=$CO_DIR/Makefile
4053-
4054-echo $CO_DIR
4055-echo $MAKEFILE
4056-
4057-if [[ -d $CO_DIR ]]; then
4058- echo &quot;Removing existing checkout of $BRANCH @ $CO_DIR&quot;
4059- rm -rf $CO_DIR
4060-fi
4061-
4062-echo &quot;Creating new checkout @ $CO_DIR.&quot;
4063-bzr co --lightweight $BRANCH $CO_DIR
4064-
4065-[[ ! -f $MAKEFILE ]] &amp;&amp; { echo &quot;No Makefile found.&quot;; exit 1; }
4066-
4067-echo &quot;Gathering info about branch...&quot;
4068-cd $CO_DIR
4069-cp -fv Makefile $WORKSPACE/Makefile.$BUILD_NUMBER
4070-bzr revno 2&gt;&amp;1 | tee $WORKSPACE/branch-info.$BUILD_NUMBER
4071-bzr info 2&gt;&amp;1 | tee -a $WORKSPACE/branch-info.$BUILD_NUMBER
4072-
4073-echo &quot;Checking lint...&quot;
4074-set -x
4075-pwd
4076-make lint 2&gt;&amp;1 | tee $WORKSPACE/make-lint.$BUILD_NUMBER
4077-if [[ &quot;${PIPESTATUS[0]}&quot; != &quot;0&quot; ]]; then
4078- echo &quot;Lint check failed.&quot;
4079- touch $WORKSPACE/make-lint.failed
4080- exit 1
4081-fi
4082+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
4083+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
4084+${OSCI_ROOT}/job-parts/lint_check.sh
4085 </command>
4086 </hudson.tasks.Shell>
4087 </builders>
4088 <publishers>
4089 <hudson.tasks.ArtifactArchiver>
4090 <artifacts>*, logs/*</artifacts>
4091+ <latestOnly>false</latestOnly>
4092 <allowEmptyArchive>true</allowEmptyArchive>
4093- <onlyIfSuccessful>false</onlyIfSuccessful>
4094- <fingerprint>false</fingerprint>
4095- <defaultExcludes>true</defaultExcludes>
4096 </hudson.tasks.ArtifactArchiver>
4097+ <hudson.plugins.descriptionsetter.DescriptionSetterPublisher plugin="description-setter@1.9">
4098+ <regexp>_:.*</regexp>
4099+ <regexpForFailed>_:.*</regexpForFailed>
4100+ <setForMatrix>false</setForMatrix>
4101+ </hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
4102 <hudson.tasks.Mailer plugin="mailer@1.11">
4103 <recipients>ryan.beisner@canonical.com</recipients>
4104 <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
4105
4106=== modified file 'deployment/jobs/charm_unit_test/config.xml'
4107--- deployment/jobs/charm_unit_test/config.xml 2014-10-02 16:08:07 +0000
4108+++ deployment/jobs/charm_unit_test/config.xml 2014-10-06 20:55:43 +0000
4109@@ -43,7 +43,7 @@
4110 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4111 </properties>
4112 <scm class="hudson.scm.NullSCM"/>
4113- <assignedNode>x86_64</assignedNode>
4114+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4115 <canRoam>false</canRoam>
4116 <disabled>false</disabled>
4117 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4118@@ -51,148 +51,24 @@
4119 <triggers/>
4120 <concurrentBuild>true</concurrentBuild>
4121 <builders>
4122- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4123- <projectName>_workspace_cleanup</projectName>
4124- </hudson.plugins.templateproject.ProxyBuilder>
4125- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4126- <projectName>_system_tools_refresh</projectName>
4127- </hudson.plugins.templateproject.ProxyBuilder>
4128- <hudson.tasks.Shell>
4129- <command>#!/bin/bash -e
4130-# Make sure node has no juju environment already bootstrapped on node
4131-
4132-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4133-echo $juju_ok
4134-
4135-if [[ &quot;$juju_ok&quot; == *CLEAR:* ]]; then
4136- echo &quot;Juju environment is clear on ${NODE_NAME}, proceeding.&quot;
4137-else
4138- echo &quot;An environment already exists on ${NODE_NAME}!&quot;
4139- #touch $WORKSPACE/fyi.enviro-pre-check.failed
4140- . $JENKINS_HOME/novarc
4141- nova list &amp;&gt; $WORKSPACE/novalist-asfound.$BUILD_NUMBER
4142- juju stat &amp;&gt; $WORKSPACE/jujustat-asfound.yaml.$BUILD_NUMBER
4143- # Tear down
4144- echo &quot;Attempting juju enviro destroy of ${THIS_ENV} on ${NODE_NAME}...&quot;
4145- THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4146- juju destroy-environment -y $THIS_ENV
4147- #ls -alh $WORKSPACE
4148- #exit 1
4149-fi
4150-</command>
4151- </hudson.tasks.Shell>
4152- <hudson.tasks.Shell>
4153- <command>#!/bin/bash -e
4154-
4155-env | sort 2&gt;&amp;1 | tee $WORKSPACE/env.$BUILD_NUMBER
4156-
4157-# Make sure expected env vars exist
4158-[[ -z &quot;$BASE_NAME&quot; ]] || [[ -z &quot;$BRANCH&quot; ]] &amp;&amp; { echo &quot;No BRANCH and/or BASE_NAME env vars.&quot;; exit 1; }
4159-
4160-mkdir -pv $JENKINS_HOME/checkout || true
4161-
4162-CO_DIR=$JENKINS_HOME/checkout/$BASE_NAME
4163-MAKEFILE=$CO_DIR/Makefile
4164-
4165-echo $CO_DIR
4166-echo $MAKEFILE
4167-
4168-if [[ -d $CO_DIR ]]; then
4169- echo &quot;Removing existing checkout of $BRANCH @ $CO_DIR&quot;
4170- rm -rf $CO_DIR
4171-fi
4172-
4173-echo &quot;Creating new checkout of $BRANCH @ $CO_DIR.&quot;
4174-bzr co --lightweight $BRANCH $CO_DIR
4175-
4176-[[ ! -f $MAKEFILE ]] &amp;&amp; { echo &quot;No Makefile found.&quot;; exit 1; }
4177-
4178-echo &quot;Gathering info about branch...&quot;
4179-cd $CO_DIR
4180-cp -fv Makefile $WORKSPACE/Makefile.$BUILD_NUMBER
4181-bzr revno 2&gt;&amp;1 | tee $WORKSPACE/branch-info.$BUILD_NUMBER
4182-bzr info 2&gt;&amp;1 | tee -a $WORKSPACE/branch-info.$BUILD_NUMBER
4183-
4184-echo &quot;Checking for unit tests in Makefile...&quot;
4185-
4186-nose_in_unit_test=&quot;$(grep &quot;unit_test:&quot; $MAKEFILE || true)&quot;
4187-nose_in_test=&quot;$(grep &quot;nosetest&quot; $MAKEFILE || true)&quot;
4188-echo &quot;niut: ${nose_in_unit_test}(end)&quot;
4189-echo &quot;nit: ${nose_in_test}(end)&quot;
4190-
4191-if [[ -z &quot;$nose_in_unit_test&quot; ]] &amp;&amp; [[ -z &quot;$nose_in_test&quot; ]]; then
4192- echo &quot;No unit test detected in Makefile.&quot;
4193- touch $WORKSPACE/unit-test.missing
4194- exit 1
4195-fi
4196-
4197-if [[ -n &quot;$nose_in_unit_test&quot; ]]; then
4198- echo &quot;Trying make unit_test...&quot;
4199- make unit_test 2&gt;&amp;1 | tee $WORKSPACE/unit-test.$BUILD_NUMBER
4200-elif [[ -n &quot;$nose_in_test&quot; ]]; then
4201- echo &quot;Trying make test...&quot;
4202- make test 2&gt;&amp;1 | tee $WORKSPACE/unit-test.$BUILD_NUMBER
4203-fi
4204-
4205-if [[ &quot;${PIPESTATUS[0]}&quot; != &quot;0&quot; ]]; then
4206- echo &quot;Unit test failed.&quot;
4207- touch $WORKSPACE/unit-test.failed
4208-fi
4209-
4210-
4211-# Tear down
4212-THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4213-juju destroy-environment -y $THIS_ENV || true
4214-ls -alh $WORKSPACE
4215-
4216-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.failed* ]]; then
4217- exit 1
4218-fi
4219-</command>
4220- </hudson.tasks.Shell>
4221- <hudson.tasks.Shell>
4222- <command>#!/bin/bash -e
4223-# Make sure we leave with no juju environment
4224-
4225-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4226-echo $juju_ok
4227-
4228-if [[ &quot;$juju_ok&quot; == *CLEAR:* ]]; then
4229- echo &quot;Juju environment is clear on ${NODE_NAME}.&quot;
4230-else
4231- echo &quot;An unexpected environment exists on ${NODE_NAME}!&quot;
4232- touch $WORKSPACE/fyi.enviro-post-check.failed
4233- . $JENKINS_HOME/novarc
4234- nova list &amp;&gt; $WORKSPACE/novalist.$BUILD_NUMBER
4235- juju stat &amp;&gt; $WORKSPACE/jujustat.yaml.$BUILD_NUMBER
4236- # Tear down
4237- echo &quot;Attempting juju enviro destroy of ${THIS_ENV} on ${NODE_NAME}...&quot;
4238- THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4239- juju destroy-environment -y $THIS_ENV
4240-fi
4241-
4242-# Check for failures
4243-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.failed* ]]; then
4244- exit 1
4245-fi
4246-
4247-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.missing* ]]; then
4248- exit 1
4249-fi</command>
4250+ <hudson.tasks.Shell>
4251+ <command>#!/bin/bash -e
4252+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
4253+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
4254+${OSCI_ROOT}/job-parts/juju_cleanup.sh
4255+${OSCI_ROOT}/job-parts/unit_test.sh
4256+${OSCI_ROOT}/job-parts/juju_cleanup.sh</command>
4257 </hudson.tasks.Shell>
4258 </builders>
4259 <publishers>
4260 <hudson.tasks.ArtifactArchiver>
4261 <artifacts>*, logs/*</artifacts>
4262+ <latestOnly>false</latestOnly>
4263 <allowEmptyArchive>true</allowEmptyArchive>
4264- <onlyIfSuccessful>false</onlyIfSuccessful>
4265- <fingerprint>false</fingerprint>
4266- <defaultExcludes>true</defaultExcludes>
4267 </hudson.tasks.ArtifactArchiver>
4268 <hudson.plugins.descriptionsetter.DescriptionSetterPublisher plugin="description-setter@1.9">
4269- <regexp>No unit test detected in Makefile</regexp>
4270- <regexpForFailed></regexpForFailed>
4271- <description>NO UNIT</description>
4272+ <regexp>_:.*</regexp>
4273+ <regexpForFailed>_:.*</regexpForFailed>
4274 <setForMatrix>false</setForMatrix>
4275 </hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
4276 </publishers>
4277
4278=== modified file 'deployment/jobs/deploy_with_deployer/config.xml'
4279--- deployment/jobs/deploy_with_deployer/config.xml 2014-10-02 16:08:07 +0000
4280+++ deployment/jobs/deploy_with_deployer/config.xml 2014-10-06 20:55:43 +0000
4281@@ -19,14 +19,14 @@
4282 </com.sonyericsson.rebuild.RebuildSettings>
4283 <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
4284 <maxConcurrentPerNode>1</maxConcurrentPerNode>
4285- <maxConcurrentTotal>3</maxConcurrentTotal>
4286+ <maxConcurrentTotal>2</maxConcurrentTotal>
4287 <throttleEnabled>true</throttleEnabled>
4288 <throttleOption>project</throttleOption>
4289 </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
4290 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4291 </properties>
4292 <scm class="hudson.scm.NullSCM"/>
4293- <assignedNode>x86_64</assignedNode>
4294+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4295 <canRoam>false</canRoam>
4296 <disabled>false</disabled>
4297 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4298@@ -34,12 +34,10 @@
4299 <triggers/>
4300 <concurrentBuild>true</concurrentBuild>
4301 <builders>
4302- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4303- <projectName>_workspace_cleanup</projectName>
4304- </hudson.plugins.templateproject.ProxyBuilder>
4305- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4306- <projectName>_system_tools_refresh</projectName>
4307- </hudson.plugins.templateproject.ProxyBuilder>
4308+ <hudson.tasks.Shell>
4309+ <command>#!/bin/bash -e
4310+${OSCI_ROOT}/job-parts/workspace_cleanup.sh</command>
4311+ </hudson.tasks.Shell>
4312 <hudson.plugins.copyartifact.CopyArtifact plugin="copyartifact@1.31">
4313 <project>manual_trigger_deploy_with_deployer</project>
4314 <filter>custom-other.yaml</filter>
4315@@ -51,151 +49,17 @@
4316 </hudson.plugins.copyartifact.CopyArtifact>
4317 <hudson.tasks.Shell>
4318 <command>#!/bin/bash -e
4319-# Prep for deploy
4320-
4321-# Gather node info and package info
4322-env | sort | tee $WORKSPACE/env.$BUILD_NUMBER
4323-${OSCI_ROOT}/populate/get-pkg-info.sh || true
4324-
4325-# Make sure node has no juju environment already bootstrapped on node
4326-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4327-echo $juju_ok
4328-
4329-if [[ &quot;$juju_ok&quot; == *CLEAR:* ]]; then
4330- echo &quot;Juju environment is clear on ${NODE_NAME}, proceeding.&quot;
4331-else
4332- echo &quot;An environment already exists on ${NODE_NAME}!&quot;
4333- set -x
4334- . $JENKINS_HOME/novarc
4335- nova list &amp;&gt; $WORKSPACE/novalist-asfound.$BUILD_NUMBER || true
4336- juju stat &amp;&gt; $WORKSPACE/jujustat-asfound.$BUILD_NUMBER || true
4337- # Tear down
4338- echo &quot;Attempting juju enviro destroy of ${THIS_ENV} on ${NODE_NAME}...&quot;
4339- THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4340- juju destroy-environment -y $THIS_ENV
4341- sleep 20
4342-fi
4343-</command>
4344- </hudson.tasks.Shell>
4345- <hudson.tasks.Shell>
4346- <command>#!/bin/bash -e
4347-
4348-# Deploy new openstack on openstack environment (tempstack)
4349-
4350-# Handle deployer bundle file upload
4351-if [[ &quot;$CHARM_SET&quot; == &quot;custom-other.yaml&quot; ]] &amp;&amp; [[ -f custom-other.yaml ]]; then
4352- echo &quot;Using custom-other deployer bundle yaml file...&quot;
4353- BUNDLE_FILE=$WORKSPACE/$CHARM_SET
4354- echo &quot;CUSTOM&quot; &gt;&gt; $WORKSPACE/b_d
4355-else
4356- BUNDLE_FILE=$OPENSTACK_CHARM_TESTING_ROOT/$CHARM_SET
4357- cp $OPENSTACK_CHARM_TESTING_ROOT/$CHARM_SET $WORKSPACE/$CHARM_SET.$BUILD_NUMBER
4358-fi
4359-
4360-INST_SOURCE=&quot;&quot;
4361-[[ &quot;$INSTALLATION_SOURCE&quot; != &quot;default&quot; ]] &amp;&amp; INST_SOURCE=&quot;-${INSTALLATION_SOURCE}&quot;
4362-
4363-set -x
4364-(cd $OPENSTACK_CHARM_TESTING_ROOT &amp;&amp;\
4365-juju-deployer --bootstrap -c ${BUNDLE_FILE} -d ${UBUNTU_RELEASE}-${OPENSTACK_RELEASE}${INST_SOURCE}) \
4366- 2&gt;&amp;1 | tee $WORKSPACE/deployer.$BUILD_NUMBER
4367-sleep 20</command>
4368- </hudson.tasks.Shell>
4369- <hudson.tasks.Shell>
4370- <command>#!/bin/bash -e
4371-# Confirm deployment, configure it, run tempest smoke
4372-
4373-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4374-echo $juju_ok
4375-
4376-if [[ &quot;$juju_ok&quot; == *DEPLOYED:* ]]; then
4377- echo &quot;Juju deployment succeeded.&quot;
4378- touch $WORKSPACE/fyi.deploy.ok
4379-
4380- # Configure the deployed tempstack
4381- . $OPENSTACK_CHARM_TESTING_ROOT/novarc
4382- echo &quot;Calling tempstack configure to tweak network, add test keys...&quot;
4383- ${OSCI_ROOT}/populate/tempstack-configure.sh 2&gt;&amp;1 | tee $WORKSPACE/tempstack-configure.$BUILD_NUMBER || true
4384-
4385- if [[ -n &quot;$(grep testkey.pem $WORKSPACE/tempstack-configure.$BUILD_NUMBER || true)&quot; ]]; then
4386- touch $WORKSPACE/fyi.tempstack-configure.ok
4387- else
4388- echo &quot;Tempstack configure failed.&quot;
4389- touch $WORKSPACE/fyi.tempstack-configure.bad
4390- fi
4391-
4392- cd $OPENSTACK_CHARM_TESTING_ROOT
4393- ./configure 2&gt;&amp;1 | tee $WORKSPACE/configure.$BUILD_NUMBER || true
4394- cp $OPENSTACK_CHARM_TESTING_ROOT/tempest.conf $WORKSPACE/tempest.conf.$BUILD_NUMBER || true
4395-
4396- if [[ -n &quot;$(grep cirros $WORKSPACE/configure.$BUILD_NUMBER || true)&quot; ]]; then
4397- echo &quot;Configure succeeded.&quot;
4398- touch $WORKSPACE/fyi.configure.ok
4399- else
4400- echo &quot;Configure failed.&quot;
4401- touch $WORKSPACE/fyi.configure.bad
4402- fi
4403-
4404- if [[ -n &quot;$(ls $WORKSPACE -1 | egrep &apos;.failed|.bad&apos;)&quot; ]]; then
4405- echo &quot;Skipping tempest, one or more preceding steps are failed or bad.&quot;
4406- touch $WORKSPACE/fyi.tempest.skipped
4407- else
4408- # Kick off tempest
4409- (cd $OPENSTACK_CHARM_TESTING_ROOT/tempest &amp;&amp; ./run_tempest.sh -N --smoke) 2&gt;&amp;1 |\
4410- tee $WORKSPACE/tempest.$BUILD_NUMBER
4411- if [[ -n &quot;$(grep &apos;failures=&apos; $WORKSPACE/tempest.$BUILD_NUMBER)&quot; ]]; then
4412- echo &quot;One or more tempest smoke tests failed.&quot;
4413- touch $WORKSPACE/fyi.tempest.bad
4414- else
4415- echo &quot;All tempest smoke tests passed!&quot;
4416- touch $WORKSPACE/fyi.tempest.ok
4417- fi
4418- fi
4419-else
4420- echo &quot;Juju deployment failed.&quot;
4421- echo &quot;Skipping tempest.&quot;
4422- touch $WORKSPACE/fyi.tempest.skipped
4423- touch $WORKSPACE/fyi.deploy.failed
4424-fi
4425-</command>
4426- </hudson.tasks.Shell>
4427- <hudson.tasks.Shell>
4428- <command>#!/bin/bash -e
4429-# Collect info &amp; tear down environment
4430-
4431-# Collect juju stat and logs
4432-echo &quot;Collecting juju status and unit logs...&quot;
4433-. $JENKINS_HOME/novarc
4434-${OSCI_ROOT}/populate/pull_juju_logs.py || true
4435-${OSCI_ROOT}/populate/collect-charm-revno-info.sh || true
4436-nova list &amp;&gt; $WORKSPACE/novalist.$BUILD_NUMBER || true
4437-juju stat &amp;&gt; $WORKSPACE/jujustat.$BUILD_NUMBER || true
4438-
4439-# Build description, combine b_d with fyi. list and echo for regex
4440-cd $WORKSPACE
4441-ls fyi.* -1 | sed &apos;s/fyi.//&apos; &gt;&gt; b_d || true
4442-b_d=&quot;$(cat $WORKSPACE/b_d | tr &apos;\n&apos; &apos; &apos; || true)&quot;
4443-echo &quot;_:${b_d}&quot;
4444-
4445-# Tear down environment
4446-THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4447-juju destroy-environment -y $THIS_ENV || true
4448-ls -alh $WORKSPACE
4449-
4450-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.failed* ]]; then
4451- echo &quot;Exiting 1.&quot;
4452- exit 1
4453-fi
4454-</command>
4455+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
4456+${OSCI_ROOT}/job-parts/juju_cleanup.sh
4457+${OSCI_ROOT}/job-parts/deploy_with_deployer.sh
4458+${OSCI_ROOT}/job-parts/juju_cleanup.sh</command>
4459 </hudson.tasks.Shell>
4460 </builders>
4461 <publishers>
4462 <hudson.tasks.ArtifactArchiver>
4463 <artifacts>*, logs/*</artifacts>
4464+ <latestOnly>false</latestOnly>
4465 <allowEmptyArchive>false</allowEmptyArchive>
4466- <onlyIfSuccessful>false</onlyIfSuccessful>
4467- <fingerprint>false</fingerprint>
4468- <defaultExcludes>true</defaultExcludes>
4469 </hudson.tasks.ArtifactArchiver>
4470 <hudson.plugins.descriptionsetter.DescriptionSetterPublisher plugin="description-setter@1.9">
4471 <regexp>_:.*</regexp>
4472
4473=== modified file 'deployment/jobs/manual_deploy_single_charm/config.xml'
4474--- deployment/jobs/manual_deploy_single_charm/config.xml 2014-10-02 16:08:07 +0000
4475+++ deployment/jobs/manual_deploy_single_charm/config.xml 2014-10-06 20:55:43 +0000
4476@@ -98,87 +98,20 @@
4477 <triggers/>
4478 <concurrentBuild>true</concurrentBuild>
4479 <builders>
4480- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4481- <projectName>_workspace_cleanup</projectName>
4482- </hudson.plugins.templateproject.ProxyBuilder>
4483- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4484- <projectName>_system_tools_refresh</projectName>
4485- </hudson.plugins.templateproject.ProxyBuilder>
4486- <hudson.tasks.Shell>
4487- <command>#!/bin/bash -e
4488-# Make sure node has no juju environment is already bootstrapped on node
4489-juju_ok=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4490-echo $juju_ok
4491-
4492-if [[ &quot;$juju_ok&quot; == *CLEAR:* ]]; then
4493- echo &quot;Juju environment is clear on ${NODE_NAME}, proceeding.&quot;
4494-else
4495- echo &quot;An environment already exists on ${NODE_NAME}!&quot;
4496- . $JENKINS_HOME/novarc
4497- nova list &amp;&gt; $WORKSPACE/novalist-asfound.$BUILD_NUMBER || true
4498- juju stat &amp;&gt; $WORKSPACE/jujustat-asfound.yaml.$BUILD_NUMBER || true
4499- # Tear down
4500- echo &quot;Attempting juju enviro destroy of ${THIS_ENV} on ${NODE_NAME}...&quot;
4501- THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4502- juju destroy-environment -y $THIS_ENV
4503-fi
4504-</command>
4505- </hudson.tasks.Shell>
4506- <hudson.tasks.Shell>
4507- <command>#!/bin/bash -e
4508-[[ ! -z &quot;$THIS_CHARM_SELECT&quot; ]] &amp;&amp; THIS_CHARM=$THIS_CHARM_SELECT || echo &quot;FYI no select&quot;
4509-[[ ! -z &quot;$THIS_CHARM_TEXT&quot; ]] &amp;&amp; THIS_CHARM=$THIS_CHARM_TEXT || echo &quot;FYI no manual text&quot;
4510-echo &quot;Proceeding with ${THIS_CHARM}.&quot;
4511-juju bootstrap
4512-juju deploy $THIS_CHARM
4513-
4514-# Wait and check
4515-ready=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4516-tries=0
4517-while [[ &quot;$ready&quot; != *DEPLOYED:* ]] &amp;&amp; [ $tries -le 30 ]
4518-do
4519- echo &quot;Waiting for environment state to become started/ACTIVE...&quot;
4520- echo &quot;Environment state: ${ready}&quot;
4521- sleep 10
4522- ready=&quot;$(${OSCI_ROOT}/populate/juju-deploy-ok.sh || true)&quot;
4523- tries=$(( $tries + 1 ))
4524-done
4525-
4526-if [[ &quot;$ready&quot; != *DEPLOYED:* ]]; then
4527- echo &quot;Juju deployment not ready.&quot;
4528- echo &quot;Environment state: ${ready}&quot;
4529- touch $WORKSPACE/fyi.deploy.failed
4530-else
4531- echo &quot;Juju deployment is ready.&quot;
4532- echo &quot;${ready}&quot;
4533-fi</command>
4534- </hudson.tasks.Shell>
4535- <hudson.tasks.Shell>
4536- <command>#!/bin/bash -e
4537-echo &quot;Collecting juju status and unit logs...&quot;
4538-. $JENKINS_HOME/novarc
4539-nova list &amp;&gt; $WORKSPACE/novalist.$BUILD_NUMBER
4540-juju stat &amp;&gt; $WORKSPACE/jujustat.yaml.$BUILD_NUMBER
4541-${OSCI_ROOT}/populate/pull_juju_logs.py
4542-
4543-echo &quot;Tearing down environment...&quot;
4544-THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos;)
4545-juju destroy-environment -y $THIS_ENV
4546-ls -alh $WORKSPACE
4547-
4548-if [[ &quot;$(ls $WORKSPACE -1)&quot; == *.failed* ]]; then
4549- exit 1
4550-fi
4551-</command>
4552+ <hudson.tasks.Shell>
4553+ <command>#!/bin/bash -e
4554+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
4555+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
4556+${OSCI_ROOT}/job-parts/juju_cleanup.sh
4557+${OSCI_ROOT}/job-parts/charm_deploy_single.sh
4558+${OSCI_ROOT}/job-parts/juju_cleanup.sh</command>
4559 </hudson.tasks.Shell>
4560 </builders>
4561 <publishers>
4562 <hudson.tasks.ArtifactArchiver>
4563- <artifacts>*</artifacts>
4564+ <artifacts>*, logs/*</artifacts>
4565+ <latestOnly>false</latestOnly>
4566 <allowEmptyArchive>false</allowEmptyArchive>
4567- <onlyIfSuccessful>false</onlyIfSuccessful>
4568- <fingerprint>false</fingerprint>
4569- <defaultExcludes>true</defaultExcludes>
4570 </hudson.tasks.ArtifactArchiver>
4571 </publishers>
4572 <buildWrappers>
4573
4574=== modified file 'deployment/jobs/manual_trigger_deploy_with_deployer/config.xml'
4575--- deployment/jobs/manual_trigger_deploy_with_deployer/config.xml 2014-10-02 15:18:00 +0000
4576+++ deployment/jobs/manual_trigger_deploy_with_deployer/config.xml 2014-10-06 20:55:43 +0000
4577@@ -80,7 +80,7 @@
4578 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4579 </properties>
4580 <scm class="hudson.scm.NullSCM"/>
4581- <assignedNode>x86_64</assignedNode>
4582+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4583 <canRoam>false</canRoam>
4584 <disabled>false</disabled>
4585 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4586@@ -116,4 +116,4 @@
4587 <template>#${BUILD_NUMBER} ${ENV,var=&quot;OPENSTACK_RELEASE&quot;} from ${ENV,var=&quot;INSTALLATION_SOURCE&quot;} on ${ENV,var=&quot;UBUNTU_RELEASE&quot;} via ${ENV,var=&quot;CHARM_SET&quot;}</template>
4588 </org.jenkinsci.plugins.buildnamesetter.BuildNameSetter>
4589 </buildWrappers>
4590-</project>
4591\ No newline at end of file
4592+</project>
4593
4594=== removed directory 'deployment/jobs/manual_trigger_juju_destroy'
4595=== removed file 'deployment/jobs/manual_trigger_juju_destroy/config.xml'
4596--- deployment/jobs/manual_trigger_juju_destroy/config.xml 2014-10-02 15:18:00 +0000
4597+++ deployment/jobs/manual_trigger_juju_destroy/config.xml 1970-01-01 00:00:00 +0000
4598@@ -1,73 +0,0 @@
4599-<?xml version='1.0' encoding='UTF-8'?>
4600-<project>
4601- <actions/>
4602- <description>* juju destroy an environment (CAUTION!) on selected node(s).</description>
4603- <logRotator class="hudson.tasks.LogRotator">
4604- <daysToKeep>-1</daysToKeep>
4605- <numToKeep>100</numToKeep>
4606- <artifactDaysToKeep>90</artifactDaysToKeep>
4607- <artifactNumToKeep>90</artifactNumToKeep>
4608- </logRotator>
4609- <keepDependencies>false</keepDependencies>
4610- <properties>
4611- <hudson.model.ParametersDefinitionProperty>
4612- <parameterDefinitions>
4613- <org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition plugin="nodelabelparameter@1.5.1">
4614- <name>Concurrent Multiple Nodes</name>
4615- <description>Choose one or more nodes for charm deployment.</description>
4616- <allowedSlaves>
4617- <string>ALL (no restriction)</string>
4618- </allowedSlaves>
4619- <defaultSlaves/>
4620- <triggerIfResult>allowMultiSelectionForConcurrentBuilds</triggerIfResult>
4621- <allowMultiNodeSelection>true</allowMultiNodeSelection>
4622- <triggerConcurrentBuilds>true</triggerConcurrentBuilds>
4623- <ignoreOfflineNodes>false</ignoreOfflineNodes>
4624- <nodeEligibility class="org.jvnet.jenkins.plugins.nodelabelparameter.node.AllNodeEligibility"/>
4625- </org.jvnet.jenkins.plugins.nodelabelparameter.NodeParameterDefinition>
4626- <hudson.model.StringParameterDefinition>
4627- <name>THIS_CONFIRM</name>
4628- <description>Type YES to confirm.</description>
4629- <defaultValue></defaultValue>
4630- </hudson.model.StringParameterDefinition>
4631- </parameterDefinitions>
4632- </hudson.model.ParametersDefinitionProperty>
4633- <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.22">
4634- <autoRebuild>false</autoRebuild>
4635- </com.sonyericsson.rebuild.RebuildSettings>
4636- <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@1.8.3">
4637- <maxConcurrentPerNode>0</maxConcurrentPerNode>
4638- <maxConcurrentTotal>0</maxConcurrentTotal>
4639- <throttleEnabled>false</throttleEnabled>
4640- <throttleOption>project</throttleOption>
4641- </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
4642- <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4643- </properties>
4644- <scm class="hudson.scm.NullSCM"/>
4645- <canRoam>true</canRoam>
4646- <disabled>false</disabled>
4647- <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4648- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
4649- <triggers/>
4650- <concurrentBuild>true</concurrentBuild>
4651- <builders>
4652- <hudson.tasks.Shell>
4653- <command>#!/bin/bash -e
4654-env | sort</command>
4655- </hudson.tasks.Shell>
4656- <hudson.tasks.Shell>
4657- <command>#!/bin/bash -e
4658-[[ &quot;$THIS_CONFIRM&quot; != &quot;YES&quot; ]] &amp;&amp; exit 1 || echo &quot;FYI confirmed.&quot;
4659-
4660-THIS_ENV=$(juju stat | awk &apos;/environment/ { print $2 }&apos; || true)
4661-[[ -n &quot;$THIS_ENV&quot; ]] &amp;&amp; juju destroy-environment -y $THIS_ENV || echo &quot;No environment to destroy on ${NODE_NAME}.&quot;</command>
4662- </hudson.tasks.Shell>
4663- </builders>
4664- <publishers/>
4665- <buildWrappers>
4666- <hudson.plugins.timestamper.TimestamperBuildWrapper plugin="timestamper@1.5.14"/>
4667- <org.jenkinsci.plugins.buildnamesetter.BuildNameSetter plugin="build-name-setter@1.3">
4668- <template>#${BUILD_NUMBER} ${ENV,var=&quot;NODE_NAME&quot;}</template>
4669- </org.jenkinsci.plugins.buildnamesetter.BuildNameSetter>
4670- </buildWrappers>
4671-</project>
4672\ No newline at end of file
4673
4674=== modified file 'deployment/jobs/scheduled_trigger_deploy/config.xml'
4675--- deployment/jobs/scheduled_trigger_deploy/config.xml 2014-10-02 16:08:07 +0000
4676+++ deployment/jobs/scheduled_trigger_deploy/config.xml 2014-10-06 20:55:43 +0000
4677@@ -23,7 +23,7 @@
4678 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4679 </properties>
4680 <scm class="hudson.scm.NullSCM"/>
4681- <assignedNode>x86_64</assignedNode>
4682+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4683 <canRoam>false</canRoam>
4684 <disabled>false</disabled>
4685 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4686@@ -79,4 +79,4 @@
4687 <template>#${BUILD_NUMBER} ${ENV,var=&quot;TRIGGER_FINGER&quot;}</template>
4688 </org.jenkinsci.plugins.buildnamesetter.BuildNameSetter>
4689 </buildWrappers>
4690-</project>
4691\ No newline at end of file
4692+</project>
4693
4694=== modified file 'deployment/jobs/scheduled_trigger_lint/config.xml'
4695--- deployment/jobs/scheduled_trigger_lint/config.xml 2014-10-02 16:08:07 +0000
4696+++ deployment/jobs/scheduled_trigger_lint/config.xml 2014-10-06 20:55:43 +0000
4697@@ -23,7 +23,7 @@
4698 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4699 </properties>
4700 <scm class="hudson.scm.NullSCM"/>
4701- <assignedNode>x86_64</assignedNode>
4702+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4703 <canRoam>false</canRoam>
4704 <disabled>false</disabled>
4705 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4706@@ -79,4 +79,4 @@
4707 <template>#${BUILD_NUMBER} ${ENV,var=&quot;TRIGGER_FINGER&quot;}</template>
4708 </org.jenkinsci.plugins.buildnamesetter.BuildNameSetter>
4709 </buildWrappers>
4710-</project>
4711\ No newline at end of file
4712+</project>
4713
4714=== modified file 'deployment/jobs/scheduled_trigger_unit/config.xml'
4715--- deployment/jobs/scheduled_trigger_unit/config.xml 2014-10-02 16:08:07 +0000
4716+++ deployment/jobs/scheduled_trigger_unit/config.xml 2014-10-06 20:55:43 +0000
4717@@ -23,7 +23,7 @@
4718 <org.jvnet.hudson.plugins.shelveproject.ShelveProjectProperty plugin="shelve-project-plugin@1.5"/>
4719 </properties>
4720 <scm class="hudson.scm.NullSCM"/>
4721- <assignedNode>x86_64</assignedNode>
4722+ <assignedNode>x86_64 || slave || trusty-slave</assignedNode>
4723 <canRoam>false</canRoam>
4724 <disabled>false</disabled>
4725 <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
4726@@ -79,4 +79,4 @@
4727 <template>#${BUILD_NUMBER} ${ENV,var=&quot;TRIGGER_FINGER&quot;}</template>
4728 </org.jenkinsci.plugins.buildnamesetter.BuildNameSetter>
4729 </buildWrappers>
4730-</project>
4731\ No newline at end of file
4732+</project>
4733
4734=== modified file 'deployment/jobs/trigger_by_branch_scanner/config.xml'
4735--- deployment/jobs/trigger_by_branch_scanner/config.xml 2014-10-02 16:08:07 +0000
4736+++ deployment/jobs/trigger_by_branch_scanner/config.xml 2014-10-06 20:55:43 +0000
4737@@ -74,47 +74,11 @@
4738 </triggers>
4739 <concurrentBuild>false</concurrentBuild>
4740 <builders>
4741- <hudson.plugins.templateproject.ProxyBuilder plugin="template-project@1.4.2">
4742- <projectName>_system_tools_refresh</projectName>
4743- </hudson.plugins.templateproject.ProxyBuilder>
4744 <hudson.tasks.Shell>
4745- <command>#!/bin/bash -e
4746-env | sort &gt; env
4747-rm -fv $WORKSPACE/*
4748-cd $OSCI_ROOT
4749-
4750-case &quot;$TRIGGER_FINGER&quot; in
4751- AUTO)
4752- ./scan_branches.py
4753- ;;
4754- AUTO_DRY_RUN)
4755- ./scan_branches.py -0 -d
4756- ;;
4757- FORCE_AMULET_ONLY)
4758- ./scan_branches.py -F -N --XD --XL --XU
4759- ;;
4760- FORCE_UNIT_ONLY)
4761- ./scan_branches.py -F -N --XD --XL --XA
4762- ;;
4763- FORCE_DEPLOY_ONLY)
4764- ./scan_branches.py -F -N --XA --XL --XU
4765- ;;
4766- FORCE_LINT_ONLY)
4767- ./scan_branches.py -F -N --XD --XA --XU
4768- ;;
4769- FORCE_ALL)
4770- ./scan_branches.py -F -N
4771- ;;
4772- FORCE_ALL_DRY_RUN)
4773- ./scan_branches.py -F0d
4774- ;;
4775- *)
4776- echo &quot;Unknown trigger option.&quot;
4777- exit 1
4778- ;;
4779-esac
4780-
4781-cp -fv $HOME/state/* $WORKSPACE</command>
4782+ <command>#!/bin/bash -ex
4783+${OSCI_ROOT}/job-parts/workspace_cleanup.sh
4784+${OSCI_ROOT}/job-parts/system_tools_refresh.sh
4785+${OSCI_ROOT}/job-parts/trigger_by_branch_scanner.sh</command>
4786 </hudson.tasks.Shell>
4787 <hudson.plugins.parameterizedtrigger.TriggerBuilder plugin="parameterized-trigger@2.25">
4788 <configs>
4789@@ -188,13 +152,11 @@
4790 <publishers>
4791 <hudson.tasks.ArtifactArchiver>
4792 <artifacts>*</artifacts>
4793+ <latestOnly>false</latestOnly>
4794 <allowEmptyArchive>false</allowEmptyArchive>
4795- <onlyIfSuccessful>false</onlyIfSuccessful>
4796- <fingerprint>false</fingerprint>
4797- <defaultExcludes>true</defaultExcludes>
4798 </hudson.tasks.ArtifactArchiver>
4799 <hudson.plugins.descriptionsetter.DescriptionSetterPublisher plugin="description-setter@1.9">
4800- <regexp>(branch-state.changed)</regexp>
4801+ <regexp>_:branch-state.changed</regexp>
4802 <regexpForFailed></regexpForFailed>
4803 <description>TRIGGERING</description>
4804 <setForMatrix>false</setForMatrix>
4805
4806=== modified file 'deployment/post-deploy.sh'
4807--- deployment/post-deploy.sh 2014-10-02 15:18:00 +0000
4808+++ deployment/post-deploy.sh 2014-10-06 20:55:43 +0000
4809@@ -34,6 +34,9 @@
4810 # Install tox and pip
4811 ./bin/142-tox-install.sh
4812
4813+# Give the juju gui a floating ip
4814+./bin/225-juju-gui-float.sh
4815+
4816 # Assign floating IP to jenkins master instance
4817 # This is now handled by deploy.py
4818 #./bin/220-master-floating-ip.sh
4819
4820=== added directory 'job-parts'
4821=== added file 'job-parts/amulet_test.sh'
4822--- job-parts/amulet_test.sh 1970-01-01 00:00:00 +0000
4823+++ job-parts/amulet_test.sh 2014-10-06 20:55:43 +0000
4824@@ -0,0 +1,61 @@
4825+#!/bin/bash -e
4826+
4827+env | grep -v "PASSWORD" | sort 2>&1 | tee env.$BUILD_NUMBER
4828+
4829+# Make sure expected env vars exist
4830+if [[ -z "$BASE_NAME" ]] || [[ -z "$BRANCH" ]]; then
4831+ echo "No BRANCH and/or BASE_NAME env vars."
4832+ touch $WORKSPACE/fyi.env-vars.bad
4833+else
4834+ # env vars are ok
4835+ mkdir -pv $JENKINS_HOME/checkout || true
4836+ CO_DIR=$JENKINS_HOME/checkout/$BASE_NAME
4837+ MAKEFILE=$CO_DIR/Makefile
4838+ echo $CO_DIR
4839+ echo $MAKEFILE
4840+
4841+ # check out branch to test
4842+ if [[ -d $CO_DIR ]]; then
4843+ echo "Removing existing checkout of $BRANCH @ $CO_DIR"
4844+ rm -rf $CO_DIR
4845+ fi
4846+ echo "Creating new checkout of $BRANCH @ $CO_DIR."
4847+ bzr co --lightweight $BRANCH $CO_DIR
4848+ bzr revno $CO_DIR 2>&1 | tee $WORKSPACE/branch-info.$BUILD_NUMBER
4849+ bzr info $CO_DIR 2>&1 | tee -a $WORKSPACE/branch-info.$BUILD_NUMBER
4850+
4851+ if [[ ! -f $MAKEFILE ]]; then
4852+ echo "No Makefile found."
4853+ touch $WORKSPACE/fyi.makefile.missing
4854+ else
4855+ # makefile exists
4856+ cd $CO_DIR
4857+ cp -fv Makefile $WORKSPACE/Makefile.$BUILD_NUMBER
4858+
4859+ echo "Checking for amulet tests in Makefile..."
4860+ has_amulet="$(grep "@juju test" $MAKEFILE || true)"
4861+
4862+ if [[ -z $has_amulet ]]; then
4863+ echo "No amulet test detected in Makefile."
4864+ touch $WORKSPACE/fyi.amulet-test.missing
4865+ else
4866+ # amulet test
4867+ make test 2>&1 | tee $WORKSPACE/make-test.$BUILD_NUMBER
4868+ if [[ "${PIPESTATUS[0]}" != "0" ]]; then
4869+ echo "Amulet test failed."
4870+ touch $WORKSPACE/fyi.amulet-test.failed
4871+ fi
4872+ fi
4873+ fi
4874+fi
4875+
4876+# Set build description
4877+${OSCI_ROOT}/job-parts/b_d.sh || true
4878+
4879+# Check for failures
4880+if [[ "$(ls $WORKSPACE -1)" == *.failed* ]] || \
4881+ [[ "$(ls $WORKSPACE -1)" == *.missing* ]] || \
4882+ [[ "$(ls $WORKSPACE -1)" == *.bad* ]]; then
4883+ ls $WORKSPACE -1
4884+ exit 1
4885+fi
4886
4887=== added file 'job-parts/b_d.sh'
4888--- job-parts/b_d.sh 1970-01-01 00:00:00 +0000
4889+++ job-parts/b_d.sh 2014-10-06 20:55:43 +0000
4890@@ -0,0 +1,11 @@
4891+#!/bin/bash -e
4892+
4893+# Collect the FYI files for build description
4894+
4895+cd $WORKSPACE
4896+b_d="$(ls -1 fyi.* 2> /dev/null | sed 's/fyi.//' | tr '\n' ' ' || true)"
4897+
4898+if [[ -n "$b_d" ]]; then
4899+ # Output build description for regex pickup
4900+ echo "_:${b_d}"
4901+fi
4902
4903=== added file 'job-parts/charm_deploy_single.sh'
4904--- job-parts/charm_deploy_single.sh 1970-01-01 00:00:00 +0000
4905+++ job-parts/charm_deploy_single.sh 2014-10-06 20:55:43 +0000
4906@@ -0,0 +1,38 @@
4907+#!/bin/bash -e
4908+
4909+[[ ! -z "$THIS_CHARM_SELECT" ]] && THIS_CHARM=$THIS_CHARM_SELECT || echo "FYI no select"
4910+[[ ! -z "$THIS_CHARM_TEXT" ]] && THIS_CHARM=$THIS_CHARM_TEXT || echo "FYI no manual text"
4911+echo "Proceeding with ${THIS_CHARM}."
4912+juju bootstrap
4913+juju deploy $THIS_CHARM
4914+
4915+# Wait and check
4916+ready="$(${OSCI_ROOT}/job-parts/juju_deploy_ok.sh || true)"
4917+tries=0
4918+while [[ "$ready" != *DEPLOYED:* ]] && [ $tries -le 30 ]
4919+do
4920+ echo "Waiting for environment state to become started/ACTIVE..."
4921+ echo "Environment state: ${ready}"
4922+ sleep 10
4923+ ready="$(${OSCI_ROOT}/job-parts/juju_deploy_ok.sh || true)"
4924+ tries=$(( $tries + 1 ))
4925+done
4926+
4927+if [[ "$ready" != *DEPLOYED:* ]]; then
4928+ echo "Juju deployment not ready."
4929+ echo "Environment state: ${ready}"
4930+ touch $WORKSPACE/fyi.deploy.failed
4931+else
4932+ echo "Juju deployment is ready."
4933+ echo "${ready}"
4934+fi
4935+
4936+echo "Collecting juju status and unit logs..."
4937+. $JENKINS_HOME/novarc
4938+nova list &> $WORKSPACE/nova-list.$BUILD_NUMBER
4939+juju stat &> $WORKSPACE/juju-stat.yaml.$BUILD_NUMBER
4940+${OSCI_ROOT}/job-parts/pull_juju_logs.py || true
4941+
4942+if [[ "$(ls $WORKSPACE -1)" == *.failed* ]]; then
4943+ exit 1
4944+fi
4945
4946=== renamed file 'populate/collect-charm-revno-info.sh' => 'job-parts/collect_charm_revno_info.sh'
4947--- populate/collect-charm-revno-info.sh 2014-10-02 15:18:00 +0000
4948+++ job-parts/collect_charm_revno_info.sh 2014-10-06 20:55:43 +0000
4949@@ -9,17 +9,19 @@
4950
4951 tmp_file="$(mktemp)"
4952
4953-echo "Collecting charm revno info..."
4954+echo "Collecting charm revno info (${tmp_file})..."
4955 [[ ! -d "$OPENSTACK_CHARM_TESTING_ROOT" ]] && { echo "Skipping, dir not found: ${OPENSTACK_CHARM_TESTING_ROOT}"; exit 0; }
4956
4957-sha256sum "${OPENSTACK_CHARM_TESTING_ROOT}/${CHARM_SET}" 2>&1 | tee -a $tmp_file
4958-
4959 revno="$(bzr revno ${OPENSTACK_CHARM_TESTING_ROOT})"
4960-echo "${OPENSTACK_CHARM_TESTING_ROOT}: ${revno}" 2>&1 | tee -a $tmp_file
4961+echo "${OPENSTACK_CHARM_TESTING_ROOT}: ${revno}" | tee -a $tmp_file
4962+bzr info ${OPENSTACK_CHARM_TESTING_ROOT}/${UBUNTU_RELEASE}/${c} | egrep 'root|branch|checkout' | tee -a $tmp_file
4963+echo -e "\n" | tee -a $tmp_file
4964
4965 for c in $(ls ${OPENSTACK_CHARM_TESTING_ROOT}/${UBUNTU_RELEASE} -1); do
4966 revno="$(bzr revno ${OPENSTACK_CHARM_TESTING_ROOT}/${UBUNTU_RELEASE}/${c})"
4967 echo "${c}: ${revno}" 2>&1 | tee -a $tmp_file
4968+ bzr info ${OPENSTACK_CHARM_TESTING_ROOT}/${UBUNTU_RELEASE}/${c} | egrep 'root|branch|checkout' | tee -a $tmp_file
4969+ echo "" | tee -a $tmp_file
4970 done
4971
4972 mv -fv $tmp_file $WORKSPACE/charm-revnos.txt.$BUILD_NUMBER
4973
4974=== added file 'job-parts/deploy_with_deployer.sh'
4975--- job-parts/deploy_with_deployer.sh 1970-01-01 00:00:00 +0000
4976+++ job-parts/deploy_with_deployer.sh 2014-10-06 20:55:43 +0000
4977@@ -0,0 +1,115 @@
4978+#!/bin/bash -e
4979+# Prep for deploy
4980+
4981+# Gather node info and package info
4982+env | sort | tee $WORKSPACE/env.$BUILD_NUMBER
4983+${OSCI_ROOT}/job-parts/get_pkg_info.sh || true
4984+
4985+# Deploy new openstack on openstack environment (tempstack)
4986+# Handle deployer bundle file upload
4987+if [[ "$CHARM_SET" == "custom-other.yaml" ]] && [[ -f custom-other.yaml ]]; then
4988+ echo "Using custom-other deployer bundle yaml file..."
4989+ BUNDLE_FILE=$WORKSPACE/$CHARM_SET
4990+ touch $WORKSPACE/fyi.custom.bundle
4991+else
4992+ BUNDLE_FILE=$OPENSTACK_CHARM_TESTING_ROOT/$CHARM_SET
4993+ cp $OPENSTACK_CHARM_TESTING_ROOT/$CHARM_SET $WORKSPACE/$CHARM_SET.$BUILD_NUMBER
4994+fi
4995+
4996+INST_SOURCE=""
4997+[[ "$INSTALLATION_SOURCE" != "default" ]] && INST_SOURCE="-${INSTALLATION_SOURCE}"
4998+
4999+set -x
5000+(cd $OPENSTACK_CHARM_TESTING_ROOT &&\
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches