Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to V0.15.7 #161

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion greenboot.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global debug_package %{nil}

Name: greenboot
Version: 0.15.6
Version: 0.15.7
Release: 1%{?dist}
Summary: Generic Health Check Framework for systemd
License: LGPL-2.1-or-later
Expand Down Expand Up @@ -176,6 +176,12 @@ fi
%{_prefix}/lib/%{name}/check/required.d/02_watchdog.sh

%changelog
* Thu Oct 31 2024 Sayan Paul <[email protected]> - 0.15.7-1
- Update to 0.15.7
- Reword warning message for disabled checks
- Fixed the issue that boot_counter cannot be unset and some scripts do not have executable permissions
- Packit: only use IoT relevant branches

* Tue Sep 10 2024 Paul Whalen <[email protected]> - 0.15.6-1
- Update to 0.15.6

Expand Down
2 changes: 1 addition & 1 deletion usr/libexec/greenboot/greenboot
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ source_configuration_file
function print_unexecuted_checks {
for disabled_healthcheck in "${DISABLED_HEALTHCHECKS[@]}"; do
if [[ "${DIS_CHECK_STATUS[$disabled_healthcheck]}" == 1 ]]; then
echo "WARNING: $disabled_healthcheck was not found and may be misspelled"
echo "WARNING: $disabled_healthcheck wasn't executed because it's disabled"
fi
done
}
Expand Down
Loading