This is the mail archive of the cygwin-apps-cvs mailing list for the cygwin-apps project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[csih] branch master, updated. v0_9_9-1-g128ed70




https://sourceware.org/git/gitweb.cgi?p=cygwin-csih.git;h=128ed704ed13cda2f3b2e336dba4aeb27a70bdd6

commit 128ed704ed13cda2f3b2e336dba4aeb27a70bdd6
Author: Achim Gratz <Stromeko@Stromeko.DE>
Date:   Fri Mar 11 20:43:33 2016 +0100

    Fix creation of privileged user in /etc/passwd
    
    * cygwin-service-installation-helper.sh (csih_create_privileged_user):
      The user name for the priviledged user is in
      ${csih_PRIVILEGED_USERNAME} in this function, so use this variable
      instead of ${username}.
    
    Reported and fix suggested by Nick Battle in
    https://cygwin.com/ml/cygwin/2016-03/msg00154.html


Diff:
---
 cygwin-service-installation-helper.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cygwin-service-installation-helper.sh b/cygwin-service-installation-helper.sh
index 10ab4fb..60d4bec 100755
--- a/cygwin-service-installation-helper.sh
+++ b/cygwin-service-installation-helper.sh
@@ -3066,7 +3066,7 @@ csih_create_privileged_user()
       # If we use /etc account DB only, write new account to /etc/passwd
       if csih_use_file_etc passwd
       then
-	/usr/bin/mkpasswd -l -u "${username}" >> "${SYSCONFDIR}/passwd"
+	/usr/bin/mkpasswd -l -u "${csih_PRIVILEGED_USERNAME}" >> "${SYSCONFDIR}/passwd"
       fi
 
       return "${ret}"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]