我正在尝试将所有用户的默认umask设置为002,包括我的CentOS框上的root.
根据this和其他答案,这可以通过编辑/ etc / profile来实现.但是该文件顶部的评论说:
It’s NOT a good idea to change this file unless you know what you
are doing. It’s much better to create a custom.sh shell script in
/etc/profile.d/ to make custom changes to your environment,as this
will prevent the need for merging in future updates.
所以我继续创建了以下文件:
/etc/profile.d/myapp.sh
单行:
umask 002
现在,当我创建一个以root身份登录的文件时,该文件具有664权限,就像我希望的那样.但是我的Apache mod_wsgi应用程序创建的文件,或者用sudo创建的文件,仍默认为644权限……
$touch newfile(以root身份):
结果= 664(工程)
$sudo touch newfile:
结果= 644(不起作用)
Apache mod_wsgi app创建的文件:
结果= 644(不起作用)
Python的RotatingFileHandler创建的文件:
结果= 644(不起作用)