Skip to content

Commit

Permalink
Added some useful default packages.
Browse files Browse the repository at this point in the history
- moved openssh to default for all systems
- networkmanager
- htop
- tmux
  • Loading branch information
GPMueller committed Sep 8, 2017
1 parent 115b4b6 commit 9672113
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyscripts/s04_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,15 @@ def install_packages(user_input, install_user_name):
'unrar',
'fortune-mod',
'reflector',
'tree']
'tree',
'openssh',
'networkmanager',
'htop',
'tmux']
packages = {
'minimal': {
'desktop' : [],
'server' : ['openssh']},
'server' : []},
'developer': defaultdict(lambda:
['cmake',
'boost',
Expand Down

0 comments on commit 9672113

Please # to comment.