diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2015-04-02 15:50:49 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2015-04-02 15:50:49 +0000 |
commit | c1041567fb6441ed3bfec5e8ed9183e5da66a5db (patch) | |
tree | 49e0970b6ec70b9c26ab45903c0f4ec30c25ae0b /security/cyrus-sasl2 | |
parent | f3e69dd4f186732cd846b632fa772a4835862fb4 (diff) |
fix option of pw.
Spotted by: Sean Eric Fagan <sef__at__Kithrup.COM>
Notes
Notes:
svn path=/head/; revision=383016
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/cyrus-sasl2/pkg-install b/security/cyrus-sasl2/pkg-install index a6e61eada638..55ac7a69b6a0 100644 --- a/security/cyrus-sasl2/pkg-install +++ b/security/cyrus-sasl2/pkg-install @@ -55,7 +55,7 @@ create_user() { uid=`expr ${uid} + 1` done if ! ${PW} add user ${USER} -u ${uid} -g ${gid} -d "${uhome}" \ - -c "the cyrus mail server" -s "${shell}" -p "*" \ + -c "the cyrus mail server" -s "${shell}" -w no \ ; then e=$? echo "*** Failed to add user \`${USER}'. Please add it manually." |