Also symlink logs to /var/log, changed changelog to lastest entry of the debian package

Signed-off-by: Thomas Büttner <thomas@vergesslicher.tech>
pull/702/head
Thomas Büttner 6 years ago
parent ad36f9ec89
commit 4e7f475491

@ -117,17 +117,22 @@ exit 0
%post %post
# Move existing configuration to /etc/jellyfin and symlink config to /etc/jellyfin # Move existing configuration to /etc/jellyfin and symlink config to /etc/jellyfin
if [ $1 -gt 1 ] ; then if [ $1 -gt 1 ] ; then
service_state=$(systemctl is-active jellyfin.service)
if [ "${service_state}" = "active" ]; then
systemctl stop jellyfin.service
fi
if [ ! -L %{_sharedstatedir}/%{name}/config ]; then if [ ! -L %{_sharedstatedir}/%{name}/config ]; then
service_state=$(systemctl is-active jellyfin.service)
if [ "${service_state}" = "active" ]; then
systemctl stop jellyfin.service
fi
mv %{_sharedstatedir}/%{name}/config/* %{_sysconfdir}/%{name}/ mv %{_sharedstatedir}/%{name}/config/* %{_sysconfdir}/%{name}/
rmdir %{_sharedstatedir}/%{name}/config rmdir %{_sharedstatedir}/%{name}/config
ln -sf %{_sysconfdir}/%{name} %{_sharedstatedir}/%{name}/config ln -sf %{_sysconfdir}/%{name} %{_sharedstatedir}/%{name}/config
if [ "${service_state}" = "active" ]; then fi
systemctl start jellyfin.service if [ ! -L %{_sharedstatedir}/%{name}/logs ]; then
fi mv %{_sharedstatedir}/%{name}/logs/* %{_var}/log/jellyfin
rmdir %{_sharedstatedir}/%{name}/logs
ln -sf %{_var}/log/jellyfin %{_sharedstatedir}/%{name}/logs
fi
if [ "${service_state}" = "active" ]; then
systemctl start jellyfin.service
fi fi
fi fi
%systemd_post jellyfin.service %systemd_post jellyfin.service
@ -139,23 +144,9 @@ fi
%systemd_postun_with_restart jellyfin.service %systemd_postun_with_restart jellyfin.service
%changelog %changelog
* Mon Jan 07 2019 Thomas Büttner <thomas@vergesslicher.tech> - 10.0.0-1 * Tue Jan 08 2019 Thomas Büttner <thomas@vergesslicher.tech> - 10.0.0-1
- Bump version to 10.0.0 - The first Jellyfin release under our new versioning scheme
- Add logging and config directories - Numerous bugfixes and code readability improvements
- Add %post script to move exitsting config to /etc/jellyfin and symlink it. - Updated logging configuration, including flag for it and configdir
- Updated theming including logo
* Sat Jan 05 2019 Thomas Büttner <thomas@vergesslicher.tech> - 3.5.2-5 - Dozens of other improvements as documented in GitHub pull request 419
- Add firewalld service.xml
* Sat Jan 05 2019 Thomas Büttner <thomas@vergesslicher.tech> - 3.5.2-4
- Re-added sudoers policy
* Sat Jan 05 2019 Thomas Büttner <thomas@vergesslicher.tech> - 3.5.2-3
- Added script for database migration
* Fri Jan 04 2019 Thomas Büttner <thomas@vergesslicher.tech> - 3.5.2-2
- Moved sudoers policy and added a note for In-App service control
- Set Restart=on-failure in jellyfin.service
* Thu Jan 03 2019 Thomas Büttner <thomas@vergesslicher.tech> - 3.5.2-1
- Initial RPM package

Loading…
Cancel
Save