Summary: | net-misc/rsync-3.1.2 request for rsyncd.socket file for systemd socket activation | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Michael Jones <gentoo> |
Component: | Current packages | Assignee: | Gentoo's Team for Core System packages <base-system> |
Status: | UNCONFIRMED --- | ||
Severity: | normal | CC: | christo.kotsi, systemd |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: |
rsync-3.1.2.ebuild.patch
rsyncd@.service rsyncd.socket rsync-3.1.2.ebuild.patch rsync-3.1.2.ebuild.patch rsyncd-service rsync-3.1.2.ebuild.patch |
Description
Michael Jones
2016-12-06 08:40:50 UTC
Created attachment 469588 [details, diff]
rsync-3.1.2.ebuild.patch
Created attachment 469590 [details, diff]
rsyncd@.service
Created attachment 469592 [details, diff]
rsyncd.socket
Created attachment 469596 [details, diff]
rsync-3.1.2.ebuild.patch
Created attachment 469600 [details, diff]
rsync-3.1.2.ebuild.patch
Created attachment 469602 [details, diff]
rsyncd-service
Created attachment 469604 [details, diff]
rsync-3.1.2.ebuild.patch
Why + if [[ -e "/etc/systemd/system/" ]]; then + insinto /etc/ + insinto /etc/systemd/system/ + newins "${FILESDIR}"/rsyncd.socket rsyncd.socket + newins "${FILESDIR}"/rsyncd-service rsyncd@.service + else + dodir /etc/systemd/system/ + insinto /etc/ + insinto /etc/systemd/system/ + newins "${FILESDIR}"/rsyncd.socket rsyncd.socket + newins "${FILESDIR}"/rsyncd-service rsyncd@.service + fi When you could do + if [[ ! -e "/etc/systemd/system/" ]]; then + dodir /etc/systemd/system/ + fi + insinto /etc/systemd/system/ + newins "${FILESDIR}"/rsyncd.socket rsyncd.socket + newins "${FILESDIR}"/rsyncd-service rsyncd@.service ? Any maintainers feel like picking up the provided patch? It's been quite a long time since I opened this issue. |