Displaying 3 results from an estimated 3 matches for "_admingroup".
Did you mean:
admingroup
2004 Sep 12
0
[PATCH] contrib/cygwin/ssh-host-config
...sh-host-config 21 Nov 2003 12:48:57 -0000 1.14
+++ contrib/cygwin/ssh-host-config 12 Sep 2004 14:04:21 -0000
@@ -449,7 +449,7 @@ then
echo "Should this script create a new local account 'sshd_server' which has"
if request "the required privileges?"
then
- _admingroup=`awk -F: '{if ( $2 == "S-1-5-32-544" ) print $1;}' ${SYSCONFDIR}/group`
+ _admingroup=`awk -F: '{if ( $1 != "root" && $2 == "S-1-5-32-544" ) print $1;}' ${SYSCONFDIR}/group`
if [ -z "${_admingroup}" ]
then
echo...
2005 Mar 13
0
[PATCH] contrib/cygwin/ssh-host-config: Reliability fix
...-config
--- ssh-host-config 21 Sep 2004 11:35:56 -0000 1.15
+++ ssh-host-config 13 Mar 2005 09:45:30 -0000
@@ -449,12 +449,10 @@ then
echo "Should this script create a new local account 'sshd_server' which has"
if request "the required privileges?"
then
- _admingroup=`awk -F: '{if ( $1 != "root" && $2 == "S-1-5-32-544" ) print $1;}' ${SYSCONFDIR}/group`
+ _admingroup=`mkgroup -l | awk -F: '{if ( $2 == "S-1-5-32-544" ) print $1;}' `
if [ -z "${_admingroup}" ]
then
- echo "...
2003 Nov 05
0
[PATCH] contrip/cygwin: Reworking the installation support
...'sshd_server' with special privileges, which is then used to run"
+ echo "the sshd service under."
+ echo
+ echo "Should this script create a new local account 'sshd_server' which has"
+ if request "the required privileges?"
+ then
+ _admingroup=`awk -F: '{if ( $2 == "S-1-5-32-544" ) print $1;}' ${SYSCONFDIR}/group`
+ if [ -z "${_admingroup}" ]
+ then
+ echo "There's no group with SID S-1-5-32-544 (Local administrators group) in"
+ echo "your ${SYSCONFDIR}/group file. Plea...