Explorar el Código

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 hace 2 años
padre
commit
26c3b62439
Se han modificado 1 ficheros con 6 adiciones y 6 borrados
  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'
+