bundles: only install apt packages via apt bundle to avoid double defining packages
This commit is contained in:
parent
e7a1c2c83e
commit
f1a693d0d6
12 changed files with 36 additions and 25 deletions
|
@ -5,11 +5,6 @@ users = {}
|
|||
files = {}
|
||||
groups = {}
|
||||
|
||||
pkg_apt = {
|
||||
'fish': {},
|
||||
'tmux': {},
|
||||
}
|
||||
|
||||
users['root'] = {
|
||||
'home': '/root',
|
||||
'shell': '/bin/bash',
|
||||
|
|
10
bundles/users/metadata.py
Normal file
10
bundles/users/metadata.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
@metadata_processor
|
||||
def apt(metadata):
|
||||
return {
|
||||
'apt': {
|
||||
'packages': {
|
||||
'fish': {},
|
||||
'tmux': {},
|
||||
},
|
||||
},
|
||||
}, DEFAULTS, DONE
|
Loading…
Add table
Add a link
Reference in a new issue