摘要
我是否可以在不创建邮件假脱机的情况下创建新用户而无需修改/ etc / default / useradd?
释
我想创建一个具有主目录和骨架的用户,但我不希望useradd脚本将邮件假脱机文件添加到unix系统.
我的/ etc / default / useradd文件说明了这一点
CREATE_MAIL_SPOOL=yes
但我不想修改默认行为.
现在我正在使用
useradd nomailuser rm /var/spool/mail/nomailuser
我也知道-d但似乎找不到不创建邮件假脱机的选项.
解决方法
man useradd
-K,--key KEY=VALUE Overrides /etc/login.defs defaults (UID_MIN,UID_MAX,UMASK,PASS_MAX_DAYS and others). Example: -K PASS_MAX_DAYS=-1 can be used when creating system account to turn off password ageing,even though system account has no password at all. Multiple -K options can be specified,e.g.: -K UID_MIN=100 -K UID_MAX=499
所以,试试这个:
# useradd -K MAIL_DIR=/dev/null nomailuser
将出现警告(创建邮箱文件:不是目录),但您可以忽略.