Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
1b130a28
Commit
1b130a28
authored
5 months ago
by
Callum Andrew
Committed by
Kevin Daudt
4 months ago
Browse files
Options
Downloads
Patches
Plain Diff
community/gcr4: make gcr-ssh-agent-wrapper use $XDG_RUNTIME_DIR
parent
e4aec96d
No related branches found
No related tags found
1 merge request
!72244
community/gcr4: make gcr-ssh-agent-wrapper use $XDG_RUNTIME_DIR
Pipeline
#260148
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/gcr4/APKBUILD
+2
-2
2 additions, 2 deletions
community/gcr4/APKBUILD
community/gcr4/gcr-ssh-agent-wrapper
+2
-3
2 additions, 3 deletions
community/gcr4/gcr-ssh-agent-wrapper
with
4 additions
and
5 deletions
community/gcr4/APKBUILD
+
2
−
2
View file @
1b130a28
...
...
@@ -3,7 +3,7 @@
# Maintainer: Newbyte <newbyte@postmarketos.org>
pkgname
=
gcr4
pkgver
=
4.3.0
pkgrel
=
0
pkgrel
=
1
pkgdesc
=
"Library for bits of crypto UI and parsing"
url
=
"https://wiki.gnome.org/Projects/CryptoGlue"
arch
=
"all"
...
...
@@ -84,7 +84,7 @@ ssh() {
sha512sums
=
"
3f252de55e07d47a49c03b714e323ceb00d82e010fe1bb606073e3188bf8bef84359a322ed6fe843620fa5d108e825dd7e9a60136c8a0e802b8f2178aa87b164 gcr-4.3.0.tar.xz
907371c4c4adf8fb3731fe509329d1f7f83633aa1d82d76f6249b2f116c76418b67f7060a74054957e
0e
0
3f
3ab106d85b77508191895ea7b6ffbad2e6f92bfee
gcr-ssh-agent-wrapper
d2b73edb885e7adcad7ec5117cbbb1d0a1b9139aed8c21923dcca22ca6af2b96d5e66ec0c966e1a21973
0e3f
dc0d5866b40797377e9f0e394db8fdda16933625
gcr-ssh-agent-wrapper
90eefba939cc52b4251b4682dc8702d9a7f87ca2abd77b0caccd8fb0707692bc9fee9c23703388cb5336c1047731a4c6175423a03b05b1cf644c73040d0e244a gcr-ssh-agent.desktop
f92d098db8146bdcacb7cc47b9ad5e9151cd1b26e786dfc164fe8c2941ded4f540e6458aedb0189ce52d49c46f7058bab86b9e02aae35962a487332503fb60ff 30-gcr-ssh-agent.sh
"
This diff is collapsed.
Click to expand it.
community/gcr4/gcr-ssh-agent-wrapper
+
2
−
3
View file @
1b130a28
...
...
@@ -4,11 +4,10 @@ UID="$(id -u)"
if
[
!
"
$UID
"
]
;
then
exit
1
;
fi
# Create base directory for the ssh-agent socket.
GCR_BASE_DIR
=
"/run/user/
$UID
/gcr"
GCR_BASE_DIR
=
"
${
XDG_RUNTIME_DIR
-
"
/run/user/
$UID
"
}
/gcr"
if
[
-e
"
$GCR_BASE_DIR
"
]
;
then
rm
-rf
"
$GCR_BASE_DIR
"
fi
mkdir
-p
"
$GCR_BASE_DIR
"
/usr/libexec/gcr-ssh-agent
--base-dir
"
$GCR_BASE_DIR
"
$*
exit
$?
exec
/usr/libexec/gcr-ssh-agent
--base-dir
"
$GCR_BASE_DIR
"
"
$@
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment