Jelajahi Sumber

fix(chore): Change run_list order

When creating user before all the package installation, some
configuration files could suffer merge issue.

Signed-off-by: Jeremy MAURO <jeremy.mauro@gmail.com>
Jeremy MAURO 2 tahun lalu
induk
melakukan
26c3b62439
1 mengubah file dengan 6 tambahan dan 6 penghapusan
  1. 6 6
      cookbooks/workstation/recipes/default.rb

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

@@ -17,15 +17,9 @@ include_recipe 'etckeeper::commit'
 # Configure repo
 include_recipe 'apt_repositories::_official'
 
-# User creation and directories
-include_recipe 'workstation::_user'
-
 # Setup podman
 include_recipe 'workstation::_podman'
 
-# Setup 'git'
-include_recipe 'workstation::_git'
-
 # Install 'systemd-genie'
 include_recipe 'workstation::_genie'
 
@@ -35,3 +29,9 @@ include_recipe 'workstation::_packages'
 # Setup terraform
 include_recipe 'workstation::_terraform'
 
+# User creation and directories
+include_recipe 'workstation::_user'
+
+# Setup 'git'
+include_recipe 'workstation::_git'
+