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

add Rocky to supported Linux distributions #374

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ set_VENDOR_DISTRIBUTION ()
nixos)
VENDOR_DISTRIBUTION='nixos'
;;
rocky)
VENDOR_DISTRIBUTION='rocky'
;;
*)
die "attempt to set an invalid VENDOR_DISTRIBUTION=$dist"
;;
Expand Down Expand Up @@ -275,6 +278,9 @@ set_VENDOR_RELEASE ()
nixos)
VENDOR_RELEASE="$release"
;;
rocky)
VENDOR_RELEASE="$release"
;;
unknown)
die "attempt to set VENDOR_RELEASE without setting VENDOR_DISTRIBUTION"
;;
Expand Down Expand Up @@ -331,6 +337,9 @@ set_VENDOR ()
suse)
VENDOR='suse'
;;
rocky*)
VENDOR='rocky'
;;
*)
die "An attempt was made to set an invalid VENDOR=$vendor"
;;
Expand Down