diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-03-24 18:35:20 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-03-24 18:38:01 +0100 |
commit | 4d875ef30993b154c2af4cbcf832ebe5b2b53093 (patch) | |
tree | c1e96add7b7a4dbfab911e1b4a33b997ac822455 /www-apps | |
parent | profiles/updates: www-apps/radarr -> www-apps/readarr (diff) | |
download | gentoo-4d875ef30993b154c2af4cbcf832ebe5b2b53093.tar.gz gentoo-4d875ef30993b154c2af4cbcf832ebe5b2b53093.tar.bz2 gentoo-4d875ef30993b154c2af4cbcf832ebe5b2b53093.zip |
www-apps/radarr-bin: fix names in src_install
Closes: https://bugs.gentoo.org/927666
Bug: https://github.com/gentoo/gentoo/pull/35869
Bug: https://bugs.gentoo.org/915346
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/radarr-bin/radarr-bin-5.4.3.8677.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www-apps/radarr-bin/radarr-bin-5.4.3.8677.ebuild b/www-apps/radarr-bin/radarr-bin-5.4.3.8677.ebuild index c3c1e324bf75..644702692d02 100644 --- a/www-apps/radarr-bin/radarr-bin-5.4.3.8677.ebuild +++ b/www-apps/radarr-bin/radarr-bin-5.4.3.8677.ebuild @@ -61,18 +61,18 @@ src_prepare() { } src_install() { - newinitd "${FILESDIR}/jellyfin.init" jellyfin + newinitd "${FILESDIR}/radarr.init" radarr - keepdir /var/lib/jellyfin - fowners -R jellyfin:jellyfin /var/lib/jellyfin + keepdir /var/lib/radarr + fowners -R radarr:radarr /var/lib/radarr insinto /etc/logrotate.d insopts -m0644 -o root -g root - newins "${FILESDIR}/jellyfin.logrotate" jellyfin + newins "${FILESDIR}/radarr.logrotate" radarr - dodir "/opt/jellyfin" + dodir "/opt/radarr" cp -R "${S}/." "${D}/opt/radarr" || die "Install failed!" systemd_dounit "${FILESDIR}/radarr.service" - systemd_newunit "${FILESDIR}/radarr.service" "jellyfin@.service" + systemd_newunit "${FILESDIR}/radarr.service" "radarr@.service" } |