Skip to content

Instantly share code, notes, and snippets.

View saschagrunert's full-sized avatar

Sascha Grunert saschagrunert

View GitHub Profile
@saschagrunert
saschagrunert / Vagrantfile
Created May 5, 2026 12:04
Fedora Vagrant setup for RPM packaging
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "fedora/42-cloud-base"
config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/42/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-libvirt-42-1.1.x86_64.vagrant.libvirt.box"
memory = 6144
cpus = 4
config.vm.provider :libvirt do |v|