forked from DevOps/deploy.stack
2b5b7f0be8
将crontab和n9e目录下的部分文件权限从755修改为644,移除可执行权限
9 lines
103 B
Bash
9 lines
103 B
Bash
#!/usr/bin/env bash
|
|
|
|
## RUN:: bash ./shell/up.bash
|
|
|
|
func_up() {
|
|
chmod +x ./crontab/*.job
|
|
}
|
|
|
|
func_up |