omz permissions

This commit is contained in:
cronekorkn 2024-07-22 10:35:50 +02:00
parent 3e2cae42e6
commit 24d346962a
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -3,13 +3,13 @@ from os.path import join
directories = {
'/etc/zsh/oh-my-zsh': {},
'/etc/zsh/oh-my-zsh/custom/plugins': {
'mode': '0755',
'mode': '0744',
'needs': [
f"git_deploy:/etc/zsh/oh-my-zsh",
]
},
'/etc/zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions': {
'mode': '0755',
'mode': '0744',
'needs': [
f"git_deploy:/etc/zsh/oh-my-zsh",
]
@ -29,10 +29,10 @@ git_deploy = {
files = {
'/etc/zsh/zprofile': {
'mode': '0755',
'mode': '0744',
},
'/etc/zsh/oh-my-zsh/themes/bw.zsh-theme': {
'mode': '0755',
'mode': '0744',
'needs': [
f"git_deploy:/etc/zsh/oh-my-zsh",
]
@ -41,7 +41,7 @@ files = {
actions = {
'chown_oh_my_zsh': {
'command': 'chmod -R 755 /etc/zsh/oh-my-zsh',
'command': 'chmod -R 744 /etc/zsh/oh-my-zsh',
'triggered': True,
'triggered_by': [
"git_deploy:/etc/zsh/oh-my-zsh",