mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
8 lines
667 B
Text
8 lines
667 B
Text
INFO="DragonFlyBSD|FreeBSD||https://www.dragonflybsd.org/|Provides an opportunity for the BSD base to grow in an entirely different direction from the one taken in the FreeBSD, NetBSD, and OpenBSD series.";;
|
|
|
|
function releases_dragonflybsd() {
|
|
# If you remove "".bz2" from the end of the searched URL, you will get only the current release - currently 6.4.0
|
|
# We could add a variable so this behaviour is optional/switchable (maybe from option or env)
|
|
DBSD_RELEASES=$(curl -sL http://mirror-master.dragonflybsd.org/iso-images/| grep -E -o '"dfly-x86_64-.*_REL.iso.bz2"' | grep -o -E '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+' )
|
|
echo $DBSD_RELEASES
|
|
}
|