Refactor top.sls and add packages/init.sls

- Refactor top.sls to remove the 'sudo' state and add the 'packages' state.
- Add packages/init.sls file to install the 'bash' package.
This commit is contained in:
Menno van Leeuwen 2024-10-27 02:21:40 +01:00
parent 3d68e5cac9
commit af18c4a940
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE
2 changed files with 7 additions and 1 deletions

5
packages/init.sls Normal file
View File

@ -0,0 +1,5 @@
packages:
pkg.installed:
- pkgs:
- bash

View File

@ -1,7 +1,8 @@
base: base:
'*': '*':
- users - users
- ssh
- sudo - sudo
- ssh
- docker - docker
- packages