浏览代码

chore(bump): Bump to the latest stable version

Signed-off-by: Jeremy MAURO <jeremy.mauro@gmail.com>
Jeremy MAURO 2 年之前
父节点
当前提交
556a5982d3
共有 4 个文件被更改,包括 28 次插入15 次删除
  1. 18 9
      base.lock.json
  2. 4 0
      base.rb
  3. 4 4
      cookbooks/workstation/recipes/default.rb
  4. 2 2
      kitchen.yml

+ 18 - 9
base.lock.json

@@ -1,10 +1,14 @@
 {
-  "revision_id": "b92a7491d2c38309f5d2e58c2965de75df2eafa3050372c9da85e799be8ef1ae",
+  "revision_id": "4e24dd34e2365aea431c7b2a335353b7379d9a493daab33e2216332e85aaa589",
   "name": "base",
   "run_list": [
     "recipe[workstation::default]"
   ],
   "named_run_lists": {
+    "complete": [
+      "recipe[workstation::_resolver]",
+      "recipe[workstation::default]"
+    ],
     "git": [
       "recipe[workstation::_resolver]",
       "recipe[workstation::_git]"
@@ -12,6 +16,10 @@
     "apt": [
       "recipe[workstation::_resolver]",
       "recipe[workstation::_apt]"
+    ],
+    "genie": [
+      "recipe[workstation::_resolver]",
+      "recipe[workstation::_genie]"
     ]
   },
   "included_policy_locks": [
@@ -31,13 +39,13 @@
     },
     "etckeeper": {
       "version": "1.0.5",
-      "identifier": "f3ed3ef7484e48ce73102b621ca695aedaf1e3a7",
-      "dotted_decimal_identifier": "68659274033155656.58110358486916262.164578230133671",
-      "cache_key": "etckeeper-33824639f1990e5df7cc1f2ca8fb83f92e2a88cc",
+      "identifier": "9b92284183c509f542fcd8a3bb955fa435d64aa6",
+      "dotted_decimal_identifier": "43789322985653513.69035023027911573.105158882511526",
+      "cache_key": "etckeeper-2e76184ec29bad14d58a62cf495f36c298f0231c",
       "origin": "https://github.com/jmauro/etckeeper-cookbook",
       "source_options": {
         "git": "https://github.com/jmauro/etckeeper-cookbook",
-        "revision": "33824639f1990e5df7cc1f2ca8fb83f92e2a88cc",
+        "revision": "2e76184ec29bad14d58a62cf495f36c298f0231c",
         "branch": "master-next"
       }
     },
@@ -89,14 +97,14 @@
     },
     "workstation": {
       "version": "0.1.0",
-      "identifier": "5af0ee98d96222da8a1ddf5bb00bbc22d69ce543",
-      "dotted_decimal_identifier": "25597655461224994.61513405828935691.206857815516483",
+      "identifier": "e42c9764278269d108e3b241e69e39feb39ee362",
+      "dotted_decimal_identifier": "64225323422024297.58838044173788830.63766098010978",
       "source": "cookbooks/workstation",
       "cache_key": null,
       "scm_info": {
         "scm": "git",
         "remote": null,
-        "revision": "3db3835a0ebe7b50790215491857c37a0cd33435",
+        "revision": "44e53e9719edf0c5bec6e69fbe2c79ae95c563b5",
         "working_tree_clean": false,
         "published": false,
         "synchronized_remote_branches": [
@@ -113,7 +121,8 @@
       "default_user": {
         "jeremy": {
           "home": "/home/jeremy",
-          "shell": "/bin/bash"
+          "shell": "/bin/bash",
+          "manage_home": true
         }
       }
     }

+ 4 - 0
base.rb

@@ -16,6 +16,10 @@ run_list [
 ]
 
 # Kitchen-test suite
+named_run_list :complete, [
+  'workstation::_resolver',
+] + run_list
+
 named_run_list :git, [
   'workstation::_resolver',
   'workstation::_git',

+ 4 - 4
cookbooks/workstation/recipes/default.rb

@@ -17,12 +17,12 @@ include_recipe 'workstation::_apt'
 # Setup 'git'
 include_recipe 'workstation::_git'
 
-# Setup etckeeper
-include_recipe 'etckeeper'
-include_recipe 'etckeeper::commit'
-
 # Setup podman
 include_recipe 'workstation::_podman'
 
 # Install 'systemd-genie'
 include_recipe 'workstation::_genie'
+
+# Setup etckeeper
+include_recipe 'etckeeper'
+include_recipe 'etckeeper::commit'

+ 2 - 2
kitchen.yml

@@ -41,8 +41,8 @@ verifier:
 
 suites:
   - name: workstation
-    run_list:
-      - 'workstation::default'
+    provisioner:
+      named_run_list: 'complete'
     lifecycle:
       pre_create:
         - podman create --name chef-latest --replace docker.io/chef/chef:latest sh