oh my zsh fix permissions
This commit is contained in:
parent
8e8f77e546
commit
8ebf4e0ec0
1 changed files with 18 additions and 1 deletions
|
@ -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')] = {
|
||||||
|
|
Loading…
Reference in a new issue