bundlewrap/bundles/users
2021-02-18 14:24:09 +01:00
..
files bundles/users: add vim-keybindings for pane navigation to tmux.conf 2021-01-31 07:59:19 +01:00
items.py bundles/users: allow setting another shell 2021-02-18 14:24:09 +01:00
metadata.py bundles/apt: move vim to default packages 2021-02-18 14:23:43 +01:00
README.md bundles/users: add readme 2020-03-28 13:12:45 +01:00

bundles/users

This bundle evaluates node metadata to determine which users should exist on the system. It will also create a home directory, add ssh keys and deploy shell configs, if user-specific configuration exists.

metadata

'users': {
    'username': {
        'home': '/home/username', # this is the default
        'shell': '/bin/bash', # this is the default
        'groups': {
            # list of groups the user should be in
        },
        'ssh_pubkey': [
            # list of ssh pubkeys that are allowed to log in
        ],
    },
}

custom shell config

Deploy your custom config to these paths:

  • data/users/files/tmux/username.conf
  • data/users/files/fish/username.conf
  • data/users/files/bash/username.bashrc