oh my zsh fix permissions

This commit is contained in:
cronekorkn 2024-07-03 10:12:27 +02:00
parent 8e8f77e546
commit 8ebf4e0ec0
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -9,6 +9,7 @@ directories = {
] ]
}, },
'/etc/zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions': { '/etc/zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions': {
'mode': '0755',
'needs': [ 'needs': [
f"git_deploy:/etc/zsh/oh-my-zsh", f"git_deploy:/etc/zsh/oh-my-zsh",
] ]
@ -27,14 +28,30 @@ git_deploy = {
} }
files = { files = {
'/etc/zsh/zprofile': {}, '/etc/zsh/zprofile': {
'mode': '0755',
},
'/etc/zsh/oh-my-zsh/themes/bw.zsh-theme': { '/etc/zsh/oh-my-zsh/themes/bw.zsh-theme': {
'mode': '0755',
'needs': [ 'needs': [
f"git_deploy:/etc/zsh/oh-my-zsh", f"git_deploy:/etc/zsh/oh-my-zsh",
] ]
}, },
} }
actions = {
'chown_oh_my_zsh': {
'command': 'chmod -R 755 /etc/zsh/oh-my-zsh',
'triggered': True,
'triggered_by': [
"git_deploy:/etc/zsh/oh-my-zsh",
"git_deploy:/etc/zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions",
"file:/etc/zsh/zprofile",
"file:/etc/zsh/oh-my-zsh/themes/bw.zsh-theme",
],
},
}
for name, user_config in node.metadata.get('users').items(): for name, user_config in node.metadata.get('users').items():
if user_config.get('shell', None) == '/usr/bin/zsh': if user_config.get('shell', None) == '/usr/bin/zsh':
files[join(user_config['home'], '.zshrc')] = { files[join(user_config['home'], '.zshrc')] = {