We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b81548d commit acfc8eeCopy full SHA for acfc8ee
1 file changed
risuclient/plugins/core/sysinfo/lifecycle/fedora.sh
@@ -45,13 +45,13 @@ else
45
exit ${RC_FAILED}
46
else
47
# Check dates for release + 2
48
- if [[ ${fedoraRD[FR+2]} == "" ]]; then
+ if [[ ${fedoraRD[FR + 2]} == "" ]]; then
49
# Next release is not yet defined, exit as OK
50
exit ${RC_OKAY}
51
52
# Fedora is supported until 30 days after release of next two versions
53
- if is_date_over_today "${fedoraRD[FR+2]}"; then
54
- if are_dates_diff_over 210 "${fedoraRD[FR+2]}" "$(LC_ALL=C LANG=C date)"; then
+ if is_date_over_today "${fedoraRD[FR + 2]}"; then
+ if are_dates_diff_over 210 "${fedoraRD[FR + 2]}" "$(LC_ALL=C LANG=C date)"; then
55
56
57
echo $"Your system is within the half-year period to become unsupported" >&2
0 commit comments