141 lines
4.6 KiB
RPMSpec
141 lines
4.6 KiB
RPMSpec
%global github_owner LorbusChris
|
|
%global github_project greenboot
|
|
%global build_timestamp %(date +"%Y%m%d%H%M%%S")
|
|
|
|
Name: greenboot
|
|
Version: 0.4
|
|
Release: 2%{?dist}
|
|
Summary: Generic Health Check Framework for systemd
|
|
License: LGPLv2+
|
|
URL: https://github.com/%{github_owner}/%{github_project}
|
|
Source0: https://github.com/%{github_owner}/%{github_project}/archive/v%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: systemd
|
|
%{?systemd_requires}
|
|
Requires: systemd
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
%package motd
|
|
Summary: Message of the Day updater for greenboot
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pam >= 1.3.1
|
|
Requires: openssh
|
|
|
|
%description motd
|
|
%{summary}.
|
|
|
|
%package ostree-grub2
|
|
Summary: Scripts for greenboot on OSTree-based systems using the Grub2 bootloader
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: %{name}-grub2 = %{version}-%{release}
|
|
Requires: %{name}-reboot = %{version}-%{release}
|
|
|
|
%description ostree-grub2
|
|
%{summary}.
|
|
|
|
%package grub2
|
|
Summary: Grub2 specific scripts for greenboot
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description grub2
|
|
%{summary}.
|
|
|
|
%package reboot
|
|
Summary: Reboot on red status for greenboot
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description reboot
|
|
%{summary}.
|
|
|
|
%prep
|
|
%setup -qn %{github_project}-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
install -Dpm 0755 usr/libexec/greenboot/greenboot.sh %{buildroot}%{_libexecdir}/%{name}/%{name}.sh
|
|
install -Dpm 0644 usr/lib/systemd/system/greenboot.target %{buildroot}%{_unitdir}/greenboot.target
|
|
install -Dpm 0644 usr/lib/systemd/system/greenboot-healthcheck.service %{buildroot}%{_unitdir}/greenboot-healthcheck.service
|
|
install -Dpm 0644 usr/lib/systemd/system/greenboot.service %{buildroot}%{_unitdir}/greenboot.service
|
|
install -Dpm 0644 usr/lib/systemd/system/redboot.service %{buildroot}%{_unitdir}/redboot.service
|
|
mkdir -p %{buildroot}/run/%{name}
|
|
mkdir -p %{buildroot}%{_sysconfdir}/motd.d
|
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/check/required.d
|
|
mkdir %{buildroot}%{_sysconfdir}/%{name}/check/wanted.d
|
|
mkdir %{buildroot}%{_sysconfdir}/%{name}/green.d
|
|
mkdir %{buildroot}%{_sysconfdir}/%{name}/red.d
|
|
mkdir %{buildroot}%{_sysconfdir}/%{name}/motd
|
|
install -Dpm 0755 etc/greenboot/check/required.d/* %{buildroot}%{_sysconfdir}/%{name}/check/required.d
|
|
install -Dpm 0755 etc/greenboot/check/wanted.d/* %{buildroot}%{_sysconfdir}/%{name}/check/wanted.d
|
|
install -Dpm 0755 etc/greenboot/green.d/* %{buildroot}%{_sysconfdir}/%{name}/green.d
|
|
install -Dpm 0755 etc/greenboot/red.d/* %{buildroot}%{_sysconfdir}/%{name}/red.d
|
|
install -Dpm 0644 etc/greenboot/motd/* %{buildroot}%{_sysconfdir}/%{name}/motd
|
|
ln -snf /run/greenboot/motd %{buildroot}%{_sysconfdir}/motd.d/%{name}
|
|
|
|
%post
|
|
%systemd_post greenboot.target
|
|
%systemd_post greenboot.service
|
|
%systemd_post greenboot-healthcheck.service
|
|
%systemd_post redboot.service
|
|
|
|
%preun
|
|
%systemd_preun greenboot.target
|
|
%systemd_preun greenboot.service
|
|
%systemd_preun greenboot-healthcheck.service
|
|
%systemd_preun redboot.service
|
|
|
|
%postun
|
|
%systemd_postun_with_restart greenboot.target
|
|
%systemd_postun_with_restart greenboot.service
|
|
%systemd_postun_with_restart greenboot-healthcheck.service
|
|
%systemd_postun_with_restart redboot.service
|
|
|
|
%check
|
|
# TODO
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%dir %{_libexecdir}/%{name}
|
|
%{_libexecdir}/%{name}/%{name}.sh
|
|
%{_unitdir}/greenboot.target
|
|
%{_unitdir}/greenboot-healthcheck.service
|
|
%{_unitdir}/greenboot.service
|
|
%{_unitdir}/redboot.service
|
|
%dir %{_sysconfdir}/%{name}
|
|
%dir %{_sysconfdir}/%{name}/check
|
|
%dir %{_sysconfdir}/%{name}/check/required.d
|
|
%{_sysconfdir}/%{name}/check/required.d/00_required_scripts_start.sh
|
|
%dir %{_sysconfdir}/%{name}/check/wanted.d
|
|
%{_sysconfdir}/%{name}/check/wanted.d/00_wanted_scripts_start.sh
|
|
%dir %{_sysconfdir}/%{name}/green.d
|
|
%{_sysconfdir}/%{name}/green.d/00_greenboot_notification.sh
|
|
%dir %{_sysconfdir}/%{name}/red.d
|
|
%{_sysconfdir}/%{name}/red.d/00_redboot_notification.sh
|
|
|
|
%files motd
|
|
%dir /run/%{name}
|
|
%config(noreplace) %{_sysconfdir}/motd.d/%{name}
|
|
%config %{_sysconfdir}/%{name}/motd/
|
|
%{_sysconfdir}/%{name}/green.d/50_greenboot_motd.sh
|
|
%{_sysconfdir}/%{name}/red.d/50_redboot_motd.sh
|
|
|
|
%files ostree-grub2
|
|
%{_sysconfdir}/%{name}/green.d/01_ostree_grub2_fallback.sh
|
|
|
|
%files grub2
|
|
%{_sysconfdir}/%{name}/green.d/02_grub2_boot_success.sh
|
|
|
|
%files reboot
|
|
%{_sysconfdir}/%{name}/red.d/99_reboot.sh
|
|
|
|
%changelog
|
|
* Tue Oct 02 2018 Christian Glombek <lorbus@fedoraproject.org> - 0.4-2
|
|
- Spec Review
|
|
|
|
* Thu Jun 14 2018 Christian Glombek <lorbus@fedoraproject.org> - 0.4-1
|
|
- Initial Package
|