dev-lxc 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e58108e0d97dc0aa6ce9c46beb31240ec9f30d5c
4
- data.tar.gz: 699291d15a022d54b90cbc31069ac15099555cad
3
+ metadata.gz: 6d9524224ecebf487af039aa0dc080b1d3755e11
4
+ data.tar.gz: 5ac4b6e2a627b4f3c64768478171eba69406b4bd
5
5
  SHA512:
6
- metadata.gz: a7e24b0f8733f118903ff96d8885b5c1bb29432d3fa0bb3c94676c475db4047023ecd60ad41da77e688f7c923bb52e5d5c35d7987b3e0b8f537e8318f3ce8e30
7
- data.tar.gz: c3758b895fc91a3b764e845dd41ddadb5b95669de2b68cfad93f78180c0918c3169cf009a35941242aba148a414ad513ed7bd160bbcce4e9b0bc9a4c653b9352
6
+ metadata.gz: fbb54b3db80ee6173bafc556822b734f6405677785c51035c8db11f0d6743baa5538adaa0dd777e3c6d2331e92434aa1c865ddd5ad2a60ecc446c2fcf4a1d955
7
+ data.tar.gz: 0748667276c932fb63b6744aded788364d24b02eddb250768ca99b79bb318f45417949fe5a4bb2250431702d5181c8961f962bdd5e303079e92e717191d98b6e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # dev-lxc Change Log
2
2
 
3
+ ## 2.2.2 (2016-07-20)
4
+
5
+ * Don't calculate/install required products if "build: completed" snapshot exists
6
+ * Be more explicit about skipping install of chefdk on build nodes
7
+
3
8
  ## 2.2.1 (2016-07-20)
4
9
 
5
10
  * Add --include-products option to show-config command
data/README.md CHANGED
@@ -32,7 +32,7 @@ If you aren't familiar with using containers please read this introduction.
32
32
 
33
33
  ### Requirements
34
34
 
35
- * Please follow the [Prerequisite Instructions](docs/prerequisites.md)
35
+ * Please follow the [Prerequisites Instructions](docs/prerequisites.md)
36
36
 
37
37
  When you are done with the prerequisites you should be able to log into the dev-lxc-platform VM and start using it.
38
38
 
@@ -29,8 +29,6 @@ Configure .kitchen.yml settings such as cpus, memory, synced_folders as desired.
29
29
 
30
30
  This should take less than 15 minutes.
31
31
 
32
- While the VM is being created you are free to open a separate terminal and follow the remaining setup instructions.
33
-
34
32
  ```
35
33
  cd dev-lxc-platform
36
34
  kitchen converge
@@ -52,6 +50,12 @@ brew install direnv
52
50
 
53
51
  Be sure to follow the [direnv install instructions](http://direnv.net/) to add the appropriate line to your user's shell rc file.
54
52
 
53
+ Run the following to approve the `.envrc` file
54
+
55
+ ```
56
+ direnv allow
57
+ ```
58
+
55
59
  #### Setup Networking
56
60
 
57
61
  Your workstation needs to know how to resolve the .lxc domain that dev-lxc containers use.
@@ -395,8 +395,9 @@ module DevLXC
395
395
  end
396
396
  servers = get_sorted_servers(server_name_regex)
397
397
  servers.each do |server|
398
- # if this is a build node and it only has one product (chefdk) then skip the install
399
- next if @server_configs[server.name][:server_type] == "build-nodes" && @server_configs[server.name][:required_products].length == 1
398
+ if @server_configs[server.name][:server_type] == "build-nodes"
399
+ next if @server_configs[server.name][:required_products]["chefdk"] && @server_configs[server.name][:required_products].length == 1
400
+ end
400
401
  install_products(server) unless @server_configs[server.name][:required_products].empty?
401
402
  end
402
403
  servers.each do |server|
@@ -493,6 +494,9 @@ module DevLXC
493
494
  if !force && !server.snapshot_list.select { |sn| sn[2].start_with?("dev-lxc build: products installed") }.empty?
494
495
  # Skipping product cache preparation for container because it has a 'products installed' snapshot
495
496
  next
497
+ elsif !force && !server.snapshot_list.select { |sn| sn[2].start_with?("dev-lxc build: completed") }.empty?
498
+ # Skipping product cache preparation for container because it has a 'build: completed' snapshot
499
+ next
496
500
  end
497
501
  products.each do |product_name, product_options|
498
502
  if product_options && product_options['package_source']
@@ -531,6 +535,9 @@ module DevLXC
531
535
  if !server.snapshot_list.select { |sn| sn[2].start_with?("dev-lxc build: products installed") }.empty?
532
536
  puts "Skipping product installation for container '#{server.name}' because it already has a 'products installed' snapshot"
533
537
  return
538
+ elsif !server.snapshot_list.select { |sn| sn[2].start_with?("dev-lxc build: completed") }.empty?
539
+ puts "Skipping product installation for container '#{server.name}' because it already has a 'build: completed' snapshot"
540
+ return
534
541
  end
535
542
  if server.container.running?
536
543
  server_was_running = true
@@ -1,3 +1,3 @@
1
1
  module DevLXC
2
- VERSION = "2.2.1"
2
+ VERSION = "2.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev-lxc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremiah Snapp