omz permissions
This commit is contained in:
parent
3e2cae42e6
commit
24d346962a
1 changed files with 5 additions and 5 deletions
|
@ -3,13 +3,13 @@ from os.path import join
|
||||||
directories = {
|
directories = {
|
||||||
'/etc/zsh/oh-my-zsh': {},
|
'/etc/zsh/oh-my-zsh': {},
|
||||||
'/etc/zsh/oh-my-zsh/custom/plugins': {
|
'/etc/zsh/oh-my-zsh/custom/plugins': {
|
||||||
'mode': '0755',
|
'mode': '0744',
|
||||||
'needs': [
|
'needs': [
|
||||||
f"git_deploy:/etc/zsh/oh-my-zsh",
|
f"git_deploy:/etc/zsh/oh-my-zsh",
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
'/etc/zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions': {
|
'/etc/zsh/oh-my-zsh/custom/plugins/zsh-autosuggestions': {
|
||||||
'mode': '0755',
|
'mode': '0744',
|
||||||
'needs': [
|
'needs': [
|
||||||
f"git_deploy:/etc/zsh/oh-my-zsh",
|
f"git_deploy:/etc/zsh/oh-my-zsh",
|
||||||
]
|
]
|
||||||
|
@ -29,10 +29,10 @@ git_deploy = {
|
||||||
|
|
||||||
files = {
|
files = {
|
||||||
'/etc/zsh/zprofile': {
|
'/etc/zsh/zprofile': {
|
||||||
'mode': '0755',
|
'mode': '0744',
|
||||||
},
|
},
|
||||||
'/etc/zsh/oh-my-zsh/themes/bw.zsh-theme': {
|
'/etc/zsh/oh-my-zsh/themes/bw.zsh-theme': {
|
||||||
'mode': '0755',
|
'mode': '0744',
|
||||||
'needs': [
|
'needs': [
|
||||||
f"git_deploy:/etc/zsh/oh-my-zsh",
|
f"git_deploy:/etc/zsh/oh-my-zsh",
|
||||||
]
|
]
|
||||||
|
@ -41,7 +41,7 @@ files = {
|
||||||
|
|
||||||
actions = {
|
actions = {
|
||||||
'chown_oh_my_zsh': {
|
'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': True,
|
||||||
'triggered_by': [
|
'triggered_by': [
|
||||||
"git_deploy:/etc/zsh/oh-my-zsh",
|
"git_deploy:/etc/zsh/oh-my-zsh",
|
||||||
|
|
Loading…
Reference in a new issue