summarylogtreecommitdiffstats
path: root/gnupg-git.install
diff options
context:
space:
mode:
Diffstat (limited to 'gnupg-git.install')
-rw-r--r--gnupg-git.install31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnupg-git.install b/gnupg-git.install
new file mode 100644
index 000000000000..1f19b99feb2d
--- /dev/null
+++ b/gnupg-git.install
@@ -0,0 +1,31 @@
+_global_units() {
+ _units=(dirmngr.socket gpg-agent.socket gpg-agent-{browser,extra,ssh}.socket)
+ _dir=/etc/systemd/user/sockets.target.wants
+
+ case $1 in
+ enable)
+ mkdir -p $_dir
+ for _u in "${_units[@]}"; do
+ ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+ done
+ ;;
+ disable)
+ for _u in "${_units[@]}"; do
+ rm -f $_dir/$_u
+ done
+ rmdir -p --ignore-fail-on-non-empty $_dir
+ ;;
+ esac
+}
+
+post_install() {
+ # See FS#42798 and FS#47371
+ dirmngr </dev/null &>/dev/null
+
+ # Let systemd supervise daemons by default
+ _global_units enable
+}
+
+pre_remove() {
+ _global_units disable
+}