deltacloud-core 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,26 +1,28 @@
1
- # Deltacloud API configuration
1
+ # Deltacloud API configuration
2
2
  # http://deltacloud.org
3
3
 
4
- # Default port where Deltacloud API will listen on (3002)
5
- # You should be able to access Deltacloud API on http://localhost:PORT/api
4
+ # Environment under which to run deltacloud-core (default: production)
5
+ #API_ENV="production"
6
6
 
7
- PORT=3002
7
+ # Default driver to be used (mock).
8
+ # NOTE: Some drivers require some additional gems to be installed.
9
+ # Please refer to http://deltacloud.org to see what gems are needed for specific
10
+ # drivers
11
+ #DRIVER="mock"
8
12
 
9
- # Bind to HOST address (default: localhost)
10
- # You can use both IP address or hostname
13
+ # Port where deltacloud core will listen (default: localhost)
14
+ # You should be able to access Deltacloud API on http://localhost:PORT/api
15
+ #PORT="3002"
11
16
 
12
- HOST=localhost
17
+ # Bind to HOST address (default: localhost)
18
+ # You can use both IP address or hostname; use 0.0.0.0 to bind to all addresses
19
+ #HOST="localhost"
13
20
 
14
- # Default driver to be used (EC2).
15
- # NOTE: Some drivers require some additional gems to be installed.
16
- # Please reffer to http://deltacloud.org to see what gems are needed for specific
17
- # drivers
21
+ # Default user that deltacloud core will be run under (default: nobody)
22
+ #DELTACLOUD_USER="nobody"
18
23
 
19
- DRIVER="ec2"
24
+ # Default log file for deltacloud-core (default: /var/log/deltacloud-core/$DRIVER.log)
25
+ #LOGFILE="/var/log/deltacloud-core/$DRIVER.log"
20
26
 
21
- # Default log file for Deltacloud API
22
- # LOGFILE="/var/log/deltacloud-core/ec2.log"
23
- #
24
- # Default user under Deltacloud API will be run (default: nobody)
25
- #
26
- # DELTACLOUD_USER="nobody"
27
+ # Default lock file for deltacloud-core (default: /var/lock/subsys/deltacloud-core)
28
+ #LOCKFILE="/var/lock/subsys/deltacloud-core"
@@ -26,28 +26,25 @@ prog="deltacloud-core"
26
26
  [ ! -d /var/log/$prog ] && mkdir -p /var/log/$prog
27
27
 
28
28
  # You can overide these variables using /etc/sysconfig/deltacloud-core
29
- #
30
- # ENV=production|development
31
- # DRIVER=ec2|mock|gogrid
32
- #
33
- #
34
- API_ENV="${ENV:-production}"
35
- DRIVER="${DRIVER:-ec2}"
29
+ API_ENV="${API_ENV:-production}"
30
+ DRIVER="${DRIVER:-mock}"
36
31
  PORT="${PORT:-3002}"
32
+ HOST="${HOST:-localhost}"
33
+ DELTACLOUD_USER="${DELTACLOUD_USER:-nobody}"
37
34
  LOGFILE="${LOGFILE:-/var/log/$prog/$DRIVER.log}"
38
- lockfile="${LOCKFILE:-/var/lock/subsys/$prog }"
35
+ LOCKFILE="${LOCKFILE:-/var/lock/subsys/$prog}"
39
36
 
40
37
  [ -r $LOGFILE ] && chown nobody $LOGFILE
41
- [ -r $lockfile ] && chown nobody $lockfile
38
+ [ -r $LOCKFILE ] && chown nobody $LOCKFILE
42
39
 
43
40
  start() {
44
41
  [ -x $exec ] || exit 5
45
42
 
46
43
  echo -n $"Starting $prog: "
47
- daemon --user nobody $exec -i $DRIVER -e $API_ENV --port $PORT >> $LOGFILE 2>&1 &
44
+ daemon --user "$DELTACLOUD_USER" "$exec -i $DRIVER -e $API_ENV --port $PORT -r $HOST >> $LOGFILE 2>&1 &"
48
45
  retval=$?
49
46
 
50
- if [ $retval -eq 0 ] && touch $lockfile ; then
47
+ if [ $retval -eq 0 ] && touch $LOCKFILE ; then
51
48
  echo_success
52
49
  echo
53
50
  else
@@ -61,7 +58,7 @@ stop() {
61
58
  echo -n $"Shutting down $prog: "
62
59
  killproc deltacloudd
63
60
  retval=$?
64
- if [ $retval -eq 0 ] && rm -f $lockfile ; then
61
+ if [ $retval -eq 0 ] && rm -f $LOCKFILE ; then
65
62
  echo_success
66
63
  echo
67
64
  else
@@ -88,7 +85,7 @@ case "$1" in
88
85
  restart
89
86
  ;;
90
87
  status)
91
- status $PROG
88
+ status -p $PIDFILE $prog
92
89
  retval=$?
93
90
  ;;
94
91
  *)
@@ -97,4 +94,4 @@ case "$1" in
97
94
  ;;
98
95
  esac
99
96
 
100
- exit $?
97
+ exit $retval
@@ -1,19 +1,16 @@
1
1
  %global app_root %{_datadir}/%{name}
2
- %%global alphatag git
3
2
 
4
3
  Summary: Deltacloud REST API
5
4
  Name: deltacloud-core
6
5
  Version: 0.4.0
7
- Release: 0.1.%{alphatag}
6
+ Release: 4%{?dist}
8
7
  Group: Development/Languages
9
8
  License: ASL 2.0 and MIT
10
9
  URL: http://incubator.apache.org/deltacloud
11
10
  Source0: http://gems.rubyforge.org/gems/%{name}-%{version}.gem
12
11
  Source1: deltacloudd-fedora
13
- Source2: deltacloud-core
12
+ Source2: deltacloud-core.init
14
13
  Source3: deltacloud-core-config
15
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
16
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
17
14
  Requires: rubygems
18
15
  Requires: ruby(abi) = 1.8
19
16
  Requires: rubygem(haml)
@@ -61,27 +58,45 @@ Documentation for %{name}
61
58
  %package all
62
59
  Summary: Deltacloud Core with all drivers
63
60
  Requires: %{name} = %{version}-%{release}
64
- Requires: deltacloud-core-ec2
65
- Requires: deltacloud-core-rackspace
66
- Requires: deltacloud-core-gogrid
67
- Requires: deltacloud-core-rimuhosting
68
- Requires: deltacloud-core-rhevm
69
- Requires: deltacloud-core-sbc
61
+ #Requires: %{name}-azure = %{version}-%{release}
62
+ Requires: %{name}-condor = %{version}-%{release}
63
+ Requires: %{name}-ec2 = %{version}-%{release}
64
+ Requires: %{name}-eucalyptus = %{version}-%{release}
65
+ Requires: %{name}-gogrid = %{version}-%{release}
66
+ Requires: %{name}-opennebula = %{version}-%{release}
67
+ Requires: %{name}-rackspace = %{version}-%{release}
68
+ Requires: %{name}-rimuhosting = %{version}-%{release}
69
+ Requires: %{name}-rhevm = %{version}-%{release}
70
+ Requires: %{name}-sbc = %{version}-%{release}
71
+ Requires: %{name}-terremark = %{version}-%{release}
72
+ Requires: %{name}-vsphere = %{version}-%{release}
70
73
 
71
74
  %description all
72
75
  Deltacloud core with all available drivers
73
76
 
74
77
  # FIXME: Azure requires waz-blobs gem which is not yet included in Fedora repos
75
78
  #
76
- #%package azure
79
+ #% package azure
77
80
  #Summary: Deltacloud Core for Azure
78
81
  #Requires: %{name} = %{version}-%{release}
79
82
  #Requires: rubygem(waz-blobs)
80
83
 
81
- #%description azure
84
+ #% description azure
82
85
  #The azure sub-package brings in all dependencies necessary to use deltacloud
83
86
  #core to connect to Azure.
84
87
 
88
+ %package condor
89
+ Summary: Deltacloud Core for CondorCloud
90
+ Requires: %{name} = %{version}-%{release}
91
+ Requires: rubygem(uuidtools)
92
+ Requires: rubygem(rest-client)
93
+ Requires: condor >= 7.4.0
94
+ Requires: condor-vm-gahp >= 7.4.0
95
+
96
+ %description condor
97
+ The condor sub-package brings in all dependencies necessary to use deltacloud core
98
+ to connect to CondorCloud.
99
+
85
100
  %package ec2
86
101
  Summary: Deltacloud Core for EC2
87
102
  Requires: %{name} = %{version}-%{release}
@@ -135,15 +150,6 @@ Requires: rubygem(rest-client)
135
150
  The rhevm sub-package brings in all dependencies necessary to use deltacloud
136
151
  core to connect to RHEV-M.
137
152
 
138
- %package vsphere
139
- Summary: Deltacloud Core for vSphere
140
- Requires: %{name} = %{version}-%{release}
141
- Requires: rubygem(rbvmomi)
142
-
143
- %description vsphere
144
- The vsphere sub-package brings in all dependencies necessary to use deltacloud
145
- core to connect to VMware vSphere.
146
-
147
153
  %package rimuhosting
148
154
  Summary: Deltacloud Core for Rimuhosting
149
155
  Requires: %{name} = %{version}-%{release}
@@ -160,19 +166,6 @@ Requires: %{name} = %{version}-%{release}
160
166
  The sbc sub-package brings in all dependencies necessary to use deltacloud core
161
167
  to connect to SBC.
162
168
 
163
- %package condor
164
- Summary: Deltacloud Core for CondorCloud
165
- Requires: %{name} = %{version}-%{release}
166
- Requires: rubygem(uuid)
167
- Requires: rubygem(rest-client)
168
- Requires: condor >= 7.4.0
169
- # FIXME: condor-vm-gaph is not yet included in Fedora
170
- # Requires: condor-vm-gaph >= 7.4.0
171
-
172
- %description condor
173
- The condor sub-package brings in all dependencies necessary to use deltacloud core
174
- to connect to CondorCloud.
175
-
176
169
  %package terremark
177
170
  Summary: Deltacloud Core for Terremark
178
171
  Requires: %{name} = %{version}-%{release}
@@ -183,6 +176,15 @@ Requires: rubygem(excon)
183
176
  The terremark sub-package brings in all dependencies necessary to use deltacloud
184
177
  core to connect to Terremark.
185
178
 
179
+ %package vsphere
180
+ Summary: Deltacloud Core for vSphere
181
+ Requires: %{name} = %{version}-%{release}
182
+ Requires: rubygem(rbvmomi)
183
+
184
+ %description vsphere
185
+ The vsphere sub-package brings in all dependencies necessary to use deltacloud
186
+ core to connect to VMware vSphere.
187
+
186
188
  %prep
187
189
  %setup -q -c -T
188
190
  gem unpack -V --target=%{_builddir} %{SOURCE0}
@@ -205,20 +207,21 @@ find %{buildroot}%{app_root}/lib -type f | xargs chmod -x
205
207
  chmod -x %{buildroot}%{_sysconfdir}/sysconfig/%{name}
206
208
  chmod 0755 %{buildroot}%{_initddir}/%{name}
207
209
  chmod 0755 %{buildroot}%{app_root}/bin/deltacloudd
208
- # Temporary remove Azure drivers until all dependencies will be pushed in to Fedora
210
+
211
+ # temporarily remove Azure drivers until all dependencies will be pushed in to Fedora
209
212
  rm -rf %{buildroot}%{app_root}/config/drivers/azure.yaml
210
- rm -rf %{buildroot}%{app_root}/support/fedora
213
+
211
214
  rdoc --op %{buildroot}%{_defaultdocdir}/%{name}
212
215
 
213
- %install condor
214
- install -m 0655 %{buildroot}%{app_root}/support/condor/config/condor-cloud \
215
- %{buildroot}%{_sysconfdir}/sysconfig/condor-cloud
216
- install -m 0655 %{buildroot}%{app_root}/support/condor/config/50* \
217
- %{buildroot}%{_sysconfdir}/condor/config.d
218
- install -m 0755 %{buildroot}%{app_root}/support/condor/bash/* \
219
- %{buildroot}%{_libexecdir}/condor
216
+ mkdir -p %{buildroot}%{_localstatedir}/log/%{name}
217
+
218
+ # the condor stuff is provided by the condor-cloud package; it really doesn't
219
+ # belong in deltacloud, but until it is removed from upstream we just manually
220
+ # delete it here
220
221
  rm -rf %{buildroot}%{app_root}/support/condor
221
222
 
223
+ rm -rf %{buildroot}%{app_root}/support/fedora
224
+
222
225
  %check
223
226
  pushd %{buildroot}%{app_root}
224
227
  rake mock:fixtures:clean
@@ -243,7 +246,6 @@ if [ "$1" -ge "1" ] ; then
243
246
  fi
244
247
 
245
248
  %files
246
- %defattr(-, root, root, -)
247
249
  %{_initddir}/%{name}
248
250
  %{_bindir}/deltacloudd
249
251
  %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
@@ -264,73 +266,52 @@ fi
264
266
  %doc %{app_root}/LICENSE
265
267
  # MIT
266
268
  %{app_root}/public/javascripts
269
+ %dir %attr(0755, nobody, nobody) %{_localstatedir}/log/%{name}
267
270
 
268
271
  %files doc
269
- %defattr(-, root, root, -)
270
272
  %{_defaultdocdir}/%{name}
271
273
  %{app_root}/tests
272
274
  %{app_root}/%{name}.gemspec
273
275
  %{app_root}/Rakefile
274
276
 
277
+ %files all
278
+
275
279
  #%files azure
276
- #%defattr(-, root, root, -)
280
+
281
+ %files condor
282
+ %{app_root}/config/drivers/condor.yaml
283
+ %{app_root}/config/condor.yaml
284
+ %{app_root}/config/addresses.xml
277
285
 
278
286
  %files ec2
279
- %defattr(-, root, root, -)
280
287
  %{app_root}/config/drivers/ec2.yaml
281
288
 
282
289
  %files eucalyptus
283
- %defattr(-, root, root, -)
284
290
  %{app_root}/config/drivers/eucalyptus.yaml
285
291
 
286
292
  %files gogrid
287
- %defattr(-, root, root, -)
288
293
  %{app_root}/config/drivers/gogrid.yaml
289
294
 
290
295
  %files opennebula
291
- %defattr(-, root, root, -)
292
296
  %{app_root}/config/drivers/opennebula.yaml
293
297
 
294
298
  %files rackspace
295
- %defattr(-, root, root, -)
296
299
  %{app_root}/config/drivers/rackspace.yaml
297
300
 
298
301
  %files rhevm
299
- %defattr(-, root, root, -)
300
302
  %{app_root}/config/drivers/rhevm.yaml
301
303
 
302
304
  %files rimuhosting
303
- %defattr(-, root, root, -)
304
305
  %{app_root}/config/drivers/rimuhosting.yaml
305
306
 
306
307
  %files sbc
307
- %defattr(-, root, root, -)
308
308
  %{app_root}/config/drivers/sbc.yaml
309
309
 
310
- %files vsphere
311
- %defattr(-, root, root, -)
312
- %{app_root}/config/drivers/vsphere.yaml
313
-
314
310
  %files terremark
315
- %defattr(-, root, root, -)
316
311
  %{app_root}/config/drivers/terremark.yaml
317
312
 
318
- %files condor
319
- %defattr(-, root, root, -)
320
- %{app_root}/config/drivers/condor.yaml
321
- %{app_root}/config/condor.yaml
322
- %{app_root}/config/addresses.xml
323
- %%config(noreplace) %{_sysconfdir}/sysconfig/condor-cloud
324
- %%config(noreplace) %{_sysconfdir}/condor/config.d/50condor_cloud.config
325
- %%config(noreplace) %{_sysconfdir}/condor/config.d/50condor_cloud_node.config
326
- %{_libexecdir}/condor/cached_images.sh
327
- %{_libexecdir}/condor/cloud_exit_hook.sh
328
- %{_libexecdir}/condor/cloud_functions
329
- %{_libexecdir}/condor/cloud_prepare_hook.sh
330
- %{_libexecdir}/condor/libvirt_cloud_script.sh
331
-
332
- %files all
333
- %defattr(-, root, root, -)
313
+ %files vsphere
314
+ %{app_root}/config/drivers/vsphere.yaml
334
315
 
335
316
  %changelog
336
317
  * Mon Jul 26 2011 Michal Fojtik <mfojtik@redhat.com> - 0.4.0-0.1.git
data/tests/rabbit_test.rb CHANGED
@@ -17,7 +17,7 @@
17
17
  $:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
18
18
  require 'tests/common'
19
19
 
20
- require 'drivers'
20
+ require 'deltacloud/drivers'
21
21
  require 'deltacloud/drivers/mock/mock_driver'
22
22
 
23
23
  module DeltacloudUnitTest
@@ -2,12 +2,13 @@
2
2
  =subheader @image.description
3
3
 
4
4
  %div{ :'data-role' => :content, :'data-theme' => 'c', :class => 'middle-dialog'}
5
- %form{ :action => instances_url, :method => :post, :class => :new_instance }
5
+ %form{ :action => instances_url, :method => :post, :class => :new_instance, :'data-ajax' => 'false'}
6
6
  %input{ :name => :image_id, :type => :hidden, :value => @instance.image_id }/
7
7
 
8
- %div{ 'data-role' => :fieldcontain }
9
- %label{ :for => :name} Instance name:
10
- %input{ :type => :text, :id => :name, :name => :name, :value => '' }
8
+ - if driver_has_feature?(:user_name)
9
+ %div{ 'data-role' => :fieldcontain }
10
+ %label{ :for => :name} Instance name:
11
+ %input{ :type => :text, :id => :name, :name => :name, :value => '' }
11
12
 
12
13
  %div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
13
14
  %h3 Additional parameters
@@ -20,13 +20,16 @@
20
20
  %p{ :'data-role' => 'fieldcontain'}=@storage_volume.state
21
21
  %li{ :'data-role' => 'list-divider'} Attached to
22
22
  %li
23
- %a{ :href => instance_url( @storage_volume.instance_id) + ' - ' + @storage_volume.device.to_s}
24
- =@storage_volume.instance_id || 'unknown'
23
+ %a{ :href => instance_url( @storage_volume.instance_id)}
24
+ = @storage_volume.instance_id || 'unknown'
25
+ %li{ :'data-role' => 'list-divider'} Device
26
+ %li
27
+ %p{ :'data-role' => 'fieldcontain'}= @storage_volume.device
25
28
  %li{ :'data-role' => 'list-divider'} Actions
26
29
  %li
27
30
  %div{ :'data-role' => 'controlgroup', :'data-type' => "horizontal" }
28
31
  - if ["AVAILABLE", "IN-USE"].include?(@storage_volume.state)
29
- =link_to_action "Snaphot", api_url_for("storage_snapshots/new?volume_id=#{@storage_volume.id}"), :get
32
+ =link_to_action "Snapshot", api_url_for("storage_snapshots/new?volume_id=#{@storage_volume.id}"), :get
30
33
  - unless @storage_volume.instance_id
31
34
  =link_to_action "Delete", destroy_storage_volume_url(@storage_volume.id), :delete
32
35
  =link_to_action "Attach", api_url_for("storage_volumes/attach?id=#{@storage_volume.id}"), :get
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deltacloud-core
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 0
10
- version: 0.4.0
9
+ - 1
10
+ version: 0.4.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Red Hat, Inc.
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-24 00:00:00 Z
18
+ date: 2011-10-04 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rake
@@ -160,85 +160,123 @@ dependencies:
160
160
  type: :runtime
161
161
  version_requirements: *id009
162
162
  - !ruby/object:Gem::Dependency
163
- name: compass
163
+ name: aws
164
164
  prerelease: false
165
165
  requirement: &id010 !ruby/object:Gem::Requirement
166
166
  none: false
167
167
  requirements:
168
168
  - - ">="
169
169
  - !ruby/object:Gem::Version
170
- hash: 29
170
+ hash: 19
171
171
  segments:
172
- - 0
173
- - 8
174
- - 17
175
- version: 0.8.17
176
- type: :development
172
+ - 2
173
+ - 5
174
+ - 4
175
+ version: 2.5.4
176
+ type: :runtime
177
177
  version_requirements: *id010
178
178
  - !ruby/object:Gem::Dependency
179
- name: nokogiri
179
+ name: waz-storage
180
180
  prerelease: false
181
181
  requirement: &id011 !ruby/object:Gem::Requirement
182
182
  none: false
183
183
  requirements:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
- hash: 5
186
+ hash: 19
187
187
  segments:
188
188
  - 1
189
- - 4
190
189
  - 1
191
- version: 1.4.1
192
- type: :development
190
+ - 0
191
+ version: 1.1.0
192
+ type: :runtime
193
193
  version_requirements: *id011
194
194
  - !ruby/object:Gem::Dependency
195
- name: rack-test
195
+ name: cloudservers
196
196
  prerelease: false
197
197
  requirement: &id012 !ruby/object:Gem::Requirement
198
198
  none: false
199
199
  requirements:
200
200
  - - ">="
201
201
  - !ruby/object:Gem::Version
202
- hash: 13
202
+ hash: 3
203
203
  segments:
204
204
  - 0
205
- - 5
206
- - 3
207
- version: 0.5.3
208
- type: :development
205
+ version: "0"
206
+ type: :runtime
209
207
  version_requirements: *id012
210
208
  - !ruby/object:Gem::Dependency
211
- name: cucumber
209
+ name: cloudfiles
212
210
  prerelease: false
213
211
  requirement: &id013 !ruby/object:Gem::Requirement
214
212
  none: false
215
213
  requirements:
216
214
  - - ">="
217
215
  - !ruby/object:Gem::Version
218
- hash: 1
216
+ hash: 3
219
217
  segments:
220
218
  - 0
221
- - 6
222
- - 3
223
- version: 0.6.3
224
- type: :development
219
+ version: "0"
220
+ type: :runtime
225
221
  version_requirements: *id013
226
222
  - !ruby/object:Gem::Dependency
227
- name: rcov
223
+ name: fog
228
224
  prerelease: false
229
225
  requirement: &id014 !ruby/object:Gem::Requirement
230
226
  none: false
231
227
  requirements:
232
228
  - - ">="
233
229
  - !ruby/object:Gem::Version
234
- hash: 43
230
+ hash: 3
235
231
  segments:
236
232
  - 0
237
- - 9
238
- - 8
239
- version: 0.9.8
240
- type: :development
233
+ version: "0"
234
+ type: :runtime
241
235
  version_requirements: *id014
236
+ - !ruby/object:Gem::Dependency
237
+ name: excon
238
+ prerelease: false
239
+ requirement: &id015 !ruby/object:Gem::Requirement
240
+ none: false
241
+ requirements:
242
+ - - ">="
243
+ - !ruby/object:Gem::Version
244
+ hash: 3
245
+ segments:
246
+ - 0
247
+ version: "0"
248
+ type: :runtime
249
+ version_requirements: *id015
250
+ - !ruby/object:Gem::Dependency
251
+ name: rest-client
252
+ prerelease: false
253
+ requirement: &id016 !ruby/object:Gem::Requirement
254
+ none: false
255
+ requirements:
256
+ - - ">="
257
+ - !ruby/object:Gem::Version
258
+ hash: 3
259
+ segments:
260
+ - 0
261
+ version: "0"
262
+ type: :runtime
263
+ version_requirements: *id016
264
+ - !ruby/object:Gem::Dependency
265
+ name: uuidtools
266
+ prerelease: false
267
+ requirement: &id017 !ruby/object:Gem::Requirement
268
+ none: false
269
+ requirements:
270
+ - - ">="
271
+ - !ruby/object:Gem::Version
272
+ hash: 9
273
+ segments:
274
+ - 2
275
+ - 1
276
+ - 1
277
+ version: 2.1.1
278
+ type: :runtime
279
+ version_requirements: *id017
242
280
  description: " The Deltacloud API is built as a service-based REST API.\n You do not directly link a Deltacloud library into your program to use it.\n Instead, a client speaks the Deltacloud API over HTTP to a server\n which implements the REST interface.\n"
243
281
  email: deltacloud-users@lists.fedorahosted.org
244
282
  executables:
@@ -254,285 +292,287 @@ files:
254
292
  - deltacloud-core.gemspec
255
293
  - config.ru
256
294
  - server.rb
257
- - deltacloud.rb
258
295
  - config/drivers/rhevm.yaml
259
- - config/drivers/rackspace.yaml
260
296
  - config/drivers/sbc.yaml
261
- - config/drivers/azure.yaml
262
- - config/drivers/condor.yaml
263
- - config/drivers/vsphere.yaml
264
- - config/drivers/rimuhosting.yaml
265
- - config/drivers/ec2.yaml
266
297
  - config/drivers/mock.yaml
298
+ - config/drivers/condor.yaml
299
+ - config/drivers/terremark.yaml
267
300
  - config/drivers/gogrid.yaml
268
- - config/drivers/opennebula.yaml
301
+ - config/drivers/ec2.yaml
269
302
  - config/drivers/eucalyptus.yaml
270
- - config/drivers/terremark.yaml
303
+ - config/drivers/opennebula.yaml
304
+ - config/drivers/vsphere.yaml
305
+ - config/drivers/rimuhosting.yaml
306
+ - config/drivers/azure.yaml
307
+ - config/drivers/rackspace.yaml
271
308
  - config/condor.yaml
272
309
  - config/addresses.xml
273
310
  - support/fedora/deltacloud-core-config
274
- - support/fedora/deltacloud-core
275
- - support/fedora/deltacloud-core.spec
311
+ - support/fedora/deltacloud-core.init
276
312
  - support/fedora/deltacloudd-fedora
277
- - support/condor/bash/cloud_prepare_hook.sh
313
+ - support/fedora/deltacloud-core.spec
314
+ - support/condor/bash/cloud_functions
278
315
  - support/condor/bash/libvirt_cloud_script.sh
279
316
  - support/condor/bash/cached_images.sh
317
+ - support/condor/bash/cloud_prepare_hook.sh
280
318
  - support/condor/bash/cloud_exit_hook.sh
281
- - support/condor/bash/cloud_functions
282
- - support/condor/config/50condor_cloud.config
283
319
  - support/condor/config/condor_config.local
284
320
  - support/condor/config/50condor_cloud_node.config
285
321
  - support/condor/config/condor-cloud
286
- - lib/drivers.rb
287
- - lib/deltacloud/helpers/conversion_helper.rb
288
- - lib/deltacloud/helpers/application_helper.rb
289
- - lib/deltacloud/helpers/json_helper.rb
290
- - lib/deltacloud/helpers/hardware_profiles_helper.rb
291
- - lib/deltacloud/helpers/blob_stream.rb
292
- - lib/deltacloud/core_ext.rb
293
- - lib/deltacloud/core_ext/integer.rb
294
- - lib/deltacloud/core_ext/string.rb
295
- - lib/deltacloud/base_driver/exceptions.rb
322
+ - support/condor/config/50condor_cloud.config
296
323
  - lib/deltacloud/base_driver/mock_driver.rb
324
+ - lib/deltacloud/base_driver/exceptions.rb
297
325
  - lib/deltacloud/base_driver/base_driver.rb
298
326
  - lib/deltacloud/base_driver/features.rb
299
- - lib/deltacloud/drivers/opennebula/cloud_client.rb
327
+ - lib/deltacloud/runner.rb
328
+ - lib/deltacloud/drivers/azure/azure_driver.rb
300
329
  - lib/deltacloud/drivers/opennebula/occi_client.rb
301
330
  - lib/deltacloud/drivers/opennebula/opennebula_driver.rb
302
- - lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
331
+ - lib/deltacloud/drivers/opennebula/cloud_client.rb
332
+ - lib/deltacloud/drivers/vsphere/vsphere_driver.rb
303
333
  - lib/deltacloud/drivers/vsphere/vsphere_client.rb
304
334
  - lib/deltacloud/drivers/vsphere/vsphere_filemanager.rb
305
- - lib/deltacloud/drivers/vsphere/vsphere_driver.rb
306
- - lib/deltacloud/drivers/condor/condor_client.rb
307
335
  - lib/deltacloud/drivers/condor/condor_driver.rb
308
336
  - lib/deltacloud/drivers/condor/ip_agents/confserver.rb
309
337
  - lib/deltacloud/drivers/condor/ip_agents/default.rb
310
- - lib/deltacloud/drivers/mock/mock_driver.rb
311
- - lib/deltacloud/drivers/mock/mock_client.rb
312
- - lib/deltacloud/drivers/sbc/sbc_client.rb
338
+ - lib/deltacloud/drivers/condor/condor_client.rb
339
+ - lib/deltacloud/drivers/rackspace/rackspace_driver.rb
313
340
  - lib/deltacloud/drivers/sbc/sbc_driver.rb
341
+ - lib/deltacloud/drivers/sbc/sbc_client.rb
342
+ - lib/deltacloud/drivers/mock/mock_client.rb
343
+ - lib/deltacloud/drivers/mock/mock_driver.rb
344
+ - lib/deltacloud/drivers/terremark/terremark_driver.rb
345
+ - lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
314
346
  - lib/deltacloud/drivers/ec2/ec2_mock_driver.rb
315
347
  - lib/deltacloud/drivers/ec2/ec2_driver.rb
316
- - lib/deltacloud/drivers/rackspace/rackspace_driver.rb
317
- - lib/deltacloud/drivers/terremark/terremark_driver.rb
318
- - lib/deltacloud/drivers/gogrid/gogrid_client.rb
319
- - lib/deltacloud/drivers/gogrid/gogrid_driver.rb
320
- - lib/deltacloud/drivers/rhevm/rhevm_client.rb
321
348
  - lib/deltacloud/drivers/rhevm/rhevm_driver.rb
322
- - lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb
349
+ - lib/deltacloud/drivers/rhevm/rhevm_client.rb
323
350
  - lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb
324
- - lib/deltacloud/drivers/azure/azure_driver.rb
325
- - lib/deltacloud/validation.rb
351
+ - lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb
352
+ - lib/deltacloud/drivers/gogrid/gogrid_client.rb
353
+ - lib/deltacloud/drivers/gogrid/gogrid_driver.rb
326
354
  - lib/deltacloud/method_serializer.rb
327
- - lib/deltacloud/helpers.rb
328
- - lib/deltacloud/backend_capability.rb
329
- - lib/deltacloud/runner.rb
330
- - lib/deltacloud/state_machine.rb
331
- - lib/deltacloud/base_driver.rb
355
+ - lib/deltacloud/helpers/blob_stream.rb
356
+ - lib/deltacloud/helpers/conversion_helper.rb
357
+ - lib/deltacloud/helpers/json_helper.rb
358
+ - lib/deltacloud/helpers/application_helper.rb
359
+ - lib/deltacloud/helpers/hardware_profiles_helper.rb
360
+ - lib/deltacloud/core_ext.rb
332
361
  - lib/deltacloud/hardware_profile.rb
333
- - lib/deltacloud/models/bucket.rb
334
- - lib/deltacloud/models/instance_profile.rb
335
362
  - lib/deltacloud/models/base_model.rb
336
- - lib/deltacloud/models/realm.rb
337
- - lib/deltacloud/models/blob.rb
338
- - lib/deltacloud/models/firewall.rb
339
- - lib/deltacloud/models/key.rb
340
- - lib/deltacloud/models/instance.rb
341
- - lib/deltacloud/models/storage_volume.rb
342
- - lib/deltacloud/models/firewall_rule.rb
363
+ - lib/deltacloud/models/address.rb
343
364
  - lib/deltacloud/models/load_balancer.rb
365
+ - lib/deltacloud/models/firewall_rule.rb
366
+ - lib/deltacloud/models/instance_profile.rb
367
+ - lib/deltacloud/models/storage_volume.rb
368
+ - lib/deltacloud/models/bucket.rb
369
+ - lib/deltacloud/models/key.rb
370
+ - lib/deltacloud/models/firewall.rb
344
371
  - lib/deltacloud/models/image.rb
345
- - lib/deltacloud/models/address.rb
372
+ - lib/deltacloud/models/blob.rb
373
+ - lib/deltacloud/models/realm.rb
374
+ - lib/deltacloud/models/instance.rb
346
375
  - lib/deltacloud/models/storage_snapshot.rb
347
- - lib/sinatra/rack_accept.rb
348
- - lib/sinatra/url_for.rb
376
+ - lib/deltacloud/core_ext/string.rb
377
+ - lib/deltacloud/core_ext/integer.rb
378
+ - lib/deltacloud/core_ext/hash.rb
379
+ - lib/deltacloud/base_driver.rb
380
+ - lib/deltacloud/validation.rb
381
+ - lib/deltacloud/models.rb
382
+ - lib/deltacloud/state_machine.rb
383
+ - lib/deltacloud/backend_capability.rb
384
+ - lib/deltacloud/drivers.rb
385
+ - lib/deltacloud/helpers.rb
349
386
  - lib/sinatra/accept_media_types.rb
387
+ - lib/sinatra/sinatra_verbose.rb
350
388
  - lib/sinatra/rabbit.rb
351
- - lib/sinatra/rack_date.rb
389
+ - lib/sinatra/rack_driver_select.rb
390
+ - lib/sinatra/static_assets.rb
391
+ - lib/sinatra/url_for.rb
352
392
  - lib/sinatra/lazy_auth.rb
353
- - lib/sinatra/body_proxy.rb
354
393
  - lib/sinatra/rack_etag.rb
355
- - lib/sinatra/rack_runtime.rb
394
+ - lib/sinatra/body_proxy.rb
356
395
  - lib/sinatra/rack_matrix_params.rb
357
- - lib/sinatra/static_assets.rb
358
- - lib/sinatra/rack_driver_select.rb
396
+ - lib/sinatra/rack_accept.rb
359
397
  - lib/sinatra/rack_syslog.rb
360
- - lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml
361
- - lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml
398
+ - lib/sinatra/rack_runtime.rb
399
+ - lib/sinatra/rack_date.rb
400
+ - lib/deltacloud.rb
401
+ - lib/deltacloud/drivers/mock/data/images/img3.yml
402
+ - lib/deltacloud/drivers/mock/data/images/img1.yml
403
+ - lib/deltacloud/drivers/mock/data/images/img2.yml
362
404
  - lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml
363
- - lib/deltacloud/drivers/mock/data/buckets/bucket2.yml
405
+ - lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml
406
+ - lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml
407
+ - lib/deltacloud/drivers/mock/data/blobs/blob5.yml
408
+ - lib/deltacloud/drivers/mock/data/blobs/blob1.yml
409
+ - lib/deltacloud/drivers/mock/data/blobs/blob3.yml
410
+ - lib/deltacloud/drivers/mock/data/blobs/blob2.yml
411
+ - lib/deltacloud/drivers/mock/data/blobs/blob4.yml
364
412
  - lib/deltacloud/drivers/mock/data/buckets/bucket1.yml
413
+ - lib/deltacloud/drivers/mock/data/buckets/bucket2.yml
365
414
  - lib/deltacloud/drivers/mock/data/instances/inst0.yml
366
- - lib/deltacloud/drivers/mock/data/instances/inst1.yml
367
415
  - lib/deltacloud/drivers/mock/data/instances/inst2.yml
368
- - lib/deltacloud/drivers/mock/data/blobs/blob4.yml
369
- - lib/deltacloud/drivers/mock/data/blobs/blob2.yml
370
- - lib/deltacloud/drivers/mock/data/blobs/blob3.yml
371
- - lib/deltacloud/drivers/mock/data/blobs/blob1.yml
372
- - lib/deltacloud/drivers/mock/data/blobs/blob5.yml
373
- - lib/deltacloud/drivers/mock/data/images/img3.yml
374
- - lib/deltacloud/drivers/mock/data/images/img2.yml
375
- - lib/deltacloud/drivers/mock/data/images/img1.yml
416
+ - lib/deltacloud/drivers/mock/data/instances/inst1.yml
376
417
  - lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml
377
418
  - lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml
378
419
  - lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml
379
- - tests/rabbit_test.rb
380
- - tests/common.rb
381
- - tests/drivers/mock/setup.rb
382
- - tests/drivers/mock/url_for_test.rb
383
- - tests/drivers/mock/hardware_profiles_test.rb
420
+ - tests/drivers/rackspace/api_test.rb
421
+ - tests/drivers/rackspace/hardware_profiles_test.rb
422
+ - tests/drivers/rackspace/images_test.rb
423
+ - tests/drivers/rackspace/instances_test.rb
424
+ - tests/drivers/rackspace/setup.rb
425
+ - tests/drivers/rackspace/realms_test.rb
384
426
  - tests/drivers/mock/instance_states_test.rb
385
427
  - tests/drivers/mock/api_test.rb
428
+ - tests/drivers/mock/url_for_test.rb
429
+ - tests/drivers/mock/hardware_profiles_test.rb
386
430
  - tests/drivers/mock/images_test.rb
387
431
  - tests/drivers/mock/instances_test.rb
432
+ - tests/drivers/mock/setup.rb
388
433
  - tests/drivers/mock/realms_test.rb
389
- - tests/drivers/rackspace/setup.rb
390
- - tests/drivers/rackspace/hardware_profiles_test.rb
391
- - tests/drivers/rackspace/api_test.rb
392
- - tests/drivers/rackspace/images_test.rb
393
- - tests/drivers/rackspace/instances_test.rb
394
- - tests/drivers/rackspace/realms_test.rb
395
- - tests/drivers/rhevm/setup.rb
396
- - tests/drivers/rhevm/hardware_profiles_test.rb
397
434
  - tests/drivers/rhevm/api_test.rb
435
+ - tests/drivers/rhevm/hardware_profiles_test.rb
398
436
  - tests/drivers/rhevm/images_test.rb
399
437
  - tests/drivers/rhevm/instances_test.rb
438
+ - tests/drivers/rhevm/setup.rb
400
439
  - tests/drivers/rhevm/realms_test.rb
401
- - views/storage_snapshots/index.xml.haml
440
+ - tests/rabbit_test.rb
441
+ - tests/common.rb
442
+ - views/firewalls/show.html.haml
443
+ - views/firewalls/new.html.haml
444
+ - views/firewalls/new_rule.html.haml
445
+ - views/firewalls/index.html.haml
446
+ - views/firewalls/index.xml.haml
447
+ - views/firewalls/show.xml.haml
448
+ - views/drivers/show.html.haml
449
+ - views/drivers/index.html.haml
450
+ - views/drivers/index.xml.haml
451
+ - views/drivers/show.xml.haml
452
+ - views/hardware_profiles/show.html.haml
453
+ - views/hardware_profiles/index.html.haml
454
+ - views/hardware_profiles/index.xml.haml
455
+ - views/hardware_profiles/show.xml.haml
456
+ - views/images/show.html.haml
457
+ - views/images/new.html.haml
458
+ - views/images/index.html.haml
459
+ - views/images/index.xml.haml
460
+ - views/images/show.xml.haml
461
+ - views/storage_snapshots/show.html.haml
462
+ - views/storage_snapshots/new.html.haml
402
463
  - views/storage_snapshots/index.html.haml
464
+ - views/storage_snapshots/index.xml.haml
403
465
  - views/storage_snapshots/show.xml.haml
404
- - views/storage_snapshots/new.html.haml
405
- - views/storage_snapshots/show.html.haml
406
- - views/api/show.xml.haml
407
- - views/api/show.html.haml
408
- - views/buckets/index.xml.haml
466
+ - views/blobs/show.html.haml
467
+ - views/blobs/new.html.haml
468
+ - views/blobs/show.xml.haml
469
+ - views/buckets/show.html.haml
470
+ - views/buckets/new.html.haml
409
471
  - views/buckets/index.html.haml
472
+ - views/buckets/index.xml.haml
410
473
  - views/buckets/show.xml.haml
411
- - views/buckets/new.html.haml
412
- - views/buckets/show.html.haml
413
- - views/instance_states/show.xml.haml
414
- - views/instance_states/show.html.haml
415
- - views/keys/index.xml.haml
416
- - views/keys/index.html.haml
417
- - views/keys/show.xml.haml
418
- - views/keys/new.html.haml
419
- - views/keys/show.html.haml
420
- - views/errors/500.html.haml
474
+ - views/errors/400.html.haml
421
475
  - views/errors/502.html.haml
422
- - views/errors/404.xml.haml
423
476
  - views/errors/405.xml.haml
477
+ - views/errors/400.xml.haml
478
+ - views/errors/403.xml.haml
424
479
  - views/errors/502.xml.haml
425
480
  - views/errors/401.html.haml
426
- - views/errors/400.html.haml
427
- - views/errors/403.html.haml
428
- - views/errors/404.html.haml
429
481
  - views/errors/405.html.haml
430
- - views/errors/403.xml.haml
431
- - views/errors/400.xml.haml
432
- - views/errors/500.xml.haml
433
482
  - views/errors/backend_capability_failure.xml.haml
483
+ - views/errors/404.html.haml
484
+ - views/errors/403.html.haml
485
+ - views/errors/500.xml.haml
434
486
  - views/errors/backend_capability_failure.html.haml
487
+ - views/errors/500.html.haml
488
+ - views/errors/404.xml.haml
435
489
  - views/errors/401.xml.haml
436
- - views/addresses/index.xml.haml
437
- - views/addresses/_address.html.haml
490
+ - views/api/show.html.haml
491
+ - views/api/show.xml.haml
492
+ - views/addresses/show.html.haml
438
493
  - views/addresses/associate.html.haml
494
+ - views/addresses/_address.html.haml
439
495
  - views/addresses/index.html.haml
496
+ - views/addresses/index.xml.haml
440
497
  - views/addresses/show.xml.haml
441
- - views/addresses/show.html.haml
498
+ - views/instance_states/show.html.haml
499
+ - views/instance_states/show.xml.haml
500
+ - views/keys/show.html.haml
501
+ - views/keys/new.html.haml
502
+ - views/keys/index.html.haml
503
+ - views/keys/index.xml.haml
504
+ - views/keys/show.xml.haml
505
+ - views/load_balancers/show.html.haml
506
+ - views/load_balancers/new.html.haml
507
+ - views/load_balancers/index.html.haml
508
+ - views/load_balancers/index.xml.haml
509
+ - views/load_balancers/show.xml.haml
510
+ - views/error.html.haml
511
+ - views/layout.html.haml
512
+ - views/instances/show.html.haml
513
+ - views/instances/new.html.haml
442
514
  - views/instances/run_command.html.haml
443
- - views/instances/index.xml.haml
444
- - views/instances/run.xml.haml
445
515
  - views/instances/run.html.haml
516
+ - views/instances/run.xml.haml
446
517
  - views/instances/index.html.haml
518
+ - views/instances/index.xml.haml
447
519
  - views/instances/show.xml.haml
448
- - views/instances/new.html.haml
449
- - views/instances/show.html.haml
450
- - views/hardware_profiles/index.xml.haml
451
- - views/hardware_profiles/index.html.haml
452
- - views/hardware_profiles/show.xml.haml
453
- - views/hardware_profiles/show.html.haml
454
- - views/realms/index.xml.haml
520
+ - views/storage_volumes/show.html.haml
521
+ - views/storage_volumes/attach.html.haml
522
+ - views/storage_volumes/new.html.haml
523
+ - views/storage_volumes/index.html.haml
524
+ - views/storage_volumes/index.xml.haml
525
+ - views/storage_volumes/show.xml.haml
526
+ - views/realms/show.html.haml
455
527
  - views/realms/index.html.haml
528
+ - views/realms/index.xml.haml
456
529
  - views/realms/show.xml.haml
457
- - views/realms/show.html.haml
458
- - views/drivers/index.xml.haml
459
- - views/drivers/index.html.haml
460
- - views/drivers/show.xml.haml
461
- - views/drivers/show.html.haml
462
- - views/layout.html.haml
463
- - views/load_balancers/index.xml.haml
464
- - views/load_balancers/index.html.haml
465
- - views/load_balancers/show.xml.haml
466
- - views/load_balancers/new.html.haml
467
- - views/load_balancers/show.html.haml
468
- - views/blobs/show.xml.haml
469
- - views/blobs/new.html.haml
470
- - views/blobs/show.html.haml
471
- - views/images/index.xml.haml
472
- - views/images/index.html.haml
473
- - views/images/show.xml.haml
474
- - views/images/new.html.haml
475
- - views/images/show.html.haml
476
- - views/firewalls/index.xml.haml
477
- - views/firewalls/index.html.haml
478
- - views/firewalls/show.xml.haml
479
- - views/firewalls/new.html.haml
480
- - views/firewalls/show.html.haml
481
- - views/firewalls/new_rule.html.haml
482
- - views/docs/index.xml.haml
530
+ - views/root/index.html.haml
483
531
  - views/docs/operation.html.haml
484
532
  - views/docs/collection.xml.haml
533
+ - views/docs/collection.html.haml
485
534
  - views/docs/operation.xml.haml
486
535
  - views/docs/index.html.haml
487
- - views/docs/collection.html.haml
488
- - views/root/index.html.haml
489
- - views/error.html.haml
490
- - views/storage_volumes/index.xml.haml
491
- - views/storage_volumes/attach.html.haml
492
- - views/storage_volumes/index.html.haml
493
- - views/storage_volumes/show.xml.haml
494
- - views/storage_volumes/new.html.haml
495
- - views/storage_volumes/show.html.haml
536
+ - views/docs/index.xml.haml
496
537
  - views/instance_states/show.png.erb
497
538
  - public/favicon.ico
498
- - public/images/machine.png
499
- - public/images/volume.png
500
- - public/images/blob.png
501
- - public/images/firewall.png
502
- - public/images/balancer.png
503
- - public/images/bucket.png
539
+ - public/images/image.png
504
540
  - public/images/cloud.png
505
- - public/images/address.png
506
- - public/images/key.png
507
- - public/images/profile.png
541
+ - public/images/balancer.png
542
+ - public/images/blob.png
508
543
  - public/images/snapshot.png
509
- - public/images/image.png
544
+ - public/images/profile.png
545
+ - public/images/key.png
510
546
  - public/images/realm.png
511
- - public/javascripts/jquery-1.4.2.min.js
512
- - public/javascripts/application.js
547
+ - public/images/address.png
548
+ - public/images/firewall.png
549
+ - public/images/bucket.png
550
+ - public/images/machine.png
551
+ - public/images/volume.png
513
552
  - public/javascripts/jquery.min.js
553
+ - public/javascripts/application.js
514
554
  - public/javascripts/jquery.mobile-1.0b1.min.js
515
- - public/stylesheets/new.css
516
555
  - public/stylesheets/jquery.mobile-1.0b1.min.css
517
- - public/stylesheets/images/icons-36-black.png
518
- - public/stylesheets/images/stopped.png
519
- - public/stylesheets/images/topbar-bg.png
520
- - public/stylesheets/images/icons-18-black.png
521
- - public/stylesheets/images/icon-search-black.png
522
- - public/stylesheets/images/pending.png
523
- - public/stylesheets/images/icons-36-white.png
556
+ - public/stylesheets/new.css
524
557
  - public/stylesheets/images/grid.png
525
- - public/stylesheets/images/icons-18-white.png
558
+ - public/stylesheets/images/logo-wide.png
526
559
  - public/stylesheets/images/rails.png
560
+ - public/stylesheets/images/icons-36-white.png
561
+ - public/stylesheets/images/running.png
527
562
  - public/stylesheets/images/ajax-loader.png
528
- - public/stylesheets/images/logo-wide.png
563
+ - public/stylesheets/images/pending.png
529
564
  - public/stylesheets/images/bread-bg.png
565
+ - public/stylesheets/images/icons-18-black.png
566
+ - public/stylesheets/images/icons-18-white.png
567
+ - public/stylesheets/images/topbar-bg.png
530
568
  - public/stylesheets/images/error.png
531
- - public/stylesheets/images/running.png
532
- - public/stylesheets/compiled/print.css
533
- - public/stylesheets/compiled/screen.css
569
+ - public/stylesheets/images/icon-search-black.png
570
+ - public/stylesheets/images/stopped.png
571
+ - public/stylesheets/images/icons-36-black.png
534
572
  - public/stylesheets/compiled/application.css
535
573
  - public/stylesheets/compiled/ie.css
574
+ - public/stylesheets/compiled/print.css
575
+ - public/stylesheets/compiled/screen.css
536
576
  - bin/deltacloudd
537
577
  - LICENSE
538
578
  - DISCLAIMER