Add explicit support for Rocky Linux

This commit is contained in:
Julian Ospald 2023-10-20 17:51:10 +08:00
parent 9d8d6e3293
commit 6e13602077
No known key found for this signature in database
GPG Key ID: 4275CDA6A29BED43
1 changed files with 2 additions and 0 deletions

View File

@ -249,6 +249,7 @@ data LinuxDistro = Debian
| RedHat
| Alpine
| AmazonLinux
| RockyLinux
-- rolling
| Gentoo
| Exherbo
@ -268,6 +269,7 @@ distroToString CentOS = "centos"
distroToString RedHat = "redhat"
distroToString Alpine = "alpine"
distroToString AmazonLinux = "amazon"
distroToString RockyLinux = "rocky"
distroToString Gentoo = "gentoo"
distroToString Exherbo = "exherbo"
distroToString UnknownLinux = "unknown"