Compare commits

...

2 commits

Author SHA1 Message Date
mwiegand
6706d04298 ckn user 2022-06-01 10:42:35 +02:00
mwiegand
cf09493486 zsh chown 2022-06-01 10:42:23 +02:00
2 changed files with 26 additions and 4 deletions

View file

@ -7,40 +7,56 @@ for name, user_config in node.metadata.get('users').items():
directories = {
join(user_config['home'], '.zsh'): {
'owner': name,
'group': name,
},
join(user_config['home'], '.zsh/oh-my-zsh'): {
'owner': name,
'group': name,
},
join(user_config['home'], '.zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions'): {
'owner': name,
'group': name,
'needs': [
f"git_deploy:{join(user_config['home'], '.zsh/oh-my-zsh')}",
]
},
}
git_deploy = {
join(user_config['home'], '.zsh/oh-my-zsh'): {
'repo': 'https://github.com/ohmyzsh/ohmyzsh.git',
'rev': 'master',
'triggers': [
f'action:chown_zsh_{name}',
],
},
join(user_config['home'], '.zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions'): {
'repo': 'https://github.com/zsh-users/zsh-autosuggestions.git',
'rev': 'master',
'triggers': [
f'action:chown_zsh_{name}',
],
},
}
files = {
join(user_config['home'], '.zshrc'): {
'owner': name,
'group': name,
'source': 'zshrc',
},
join(user_config['home'], '.zsh/oh-my-zsh/themes/bw.zsh-theme'): {
'owner': name,
'group': name,
'needs': [
f"git_deploy:{join(user_config['home'], '.zsh/oh-my-zsh')}",
]
},
}
actions = {
f'chown_zsh_{name}': {
'command': f"chown -R {name}:{name} {user_config['home']}",
'triggered': True,
},
}

View file

@ -30,9 +30,15 @@
],
},
'users': {
'root': {
'ckn': {
'shell': '/usr/bin/zsh',
'authorized_keys': {
'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEU1l2ijW3ZqzFGZcdWg2ESgTGehdNfBTfafxsjWvWdS mwiegand@macbook',
},
},
},
'sudoers': {
'ckn': {'ALL'},
},
},
}