Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 02 Oct 2019 15:55:25 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 238560] sysutils/google-compute-engine-oslogin: fix OSLogin
Message-ID:  <bug-238560-7788-j446Le3Hdj@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-238560-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-238560-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D238560

Peter <fbsdq@peterk.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fbsdq@peterk.org

--- Comment #2 from Peter <fbsdq@peterk.org> ---
still having issues with oslogin
it seems this patch broke it:
  https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D238561
or directly:
=20
https://svnweb.freebsd.org/ports/head/sysutils/google-compute-engine-oslogi=
n/files/patch-bin_google__oslogin__control?view=3Dmarkup&pathrev=3D504192

line 80 - more specifically the quotes need to be removed:
  for func in "$funcs"; do
should be
  for func in $funcs; do


example:
crook:$=20
crook:$ cat /tmp/letter.sh=20
z=3D"a b c d e f"

echo withquotes:
for letter in "$z"; do
  echo $letter
done

echo noquotes:
for letter in $z; do
  echo $letter
done
crook:$=20
crook:$=20
crook:$ sh /tmp/letter.sh=20
withquotes:
a b c d e f
noquotes:
a
b
c
d
e
f
crook:$

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-238560-7788-j446Le3Hdj>