Bug 206887

Summary: syntax error in /etc/kde/env/gpg-agent-startup.sh
Product: [Fedora] Fedora Reporter: Radek Bíba <rbiba>
Component: gnupg2Assignee: Rex Dieter <rdieter>
Status: CLOSED NEXTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: 5CC: extras-qa
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-10-31 21:17:40 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Radek Bíba 2006-09-17 19:15:36 UTC
Description of problem:
I just found this when examininig /tmp/xses-$USER.XXXXXX:

/etc/kde/env/gpg-agent-startup.sh: line 10: test: too many arguments

Line 10 reads:
>>> if ! test -S ${GPG_SOCKET} -o ! test -O ${GPG_SOCKET} ; then <<<
which is incorrect. The "-o ! test..." is passed to test(1). Did you mean:
>>> if ! test -S ${GPG_SOCKET} -o ! -O ${GPG_SOCKET} ; then <<<
?

Version-Release number of selected component (if applicable):
gnupg2-1.9.22-1.fc5

Comment 1 Rex Dieter 2006-10-31 21:17:40 UTC
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-6
- fix "syntax error in gpg-agent-startup.sh" (#206887)