vagrant-zfs/provision.sh
Kris Lamoureux 2b32ab31c9
Move provisioning to separate file
- Corrected disk size to correct TiB size for 18 TB
- Moved provisioning logic to separate script
- Added scratch directory with .gitignore for local overrides
- Fixed VAGRANT_PROV boolean handling to prevent default override
2025-03-05 22:25:19 -05:00

29 lines
799 B
Bash

#!/bin/bash
if [ -f /etc/os-release ]; then
# shellcheck source=/dev/null
. /etc/os-release
OS_ID=$ID
else
echo "Cannot detect OS, exiting"
exit 1
fi
if [ "$OS_ID" = "debian" ]; then
export DEBIAN_FRONTEND=noninteractive
SOURCES_LIST="/etc/apt/sources.list.d/contrib.list"
echo "deb http://deb.debian.org/debian/ ${VERSION_CODENAME} contrib" >"$SOURCES_LIST"
apt-get update
apt-get install -y "linux-headers-$(uname -r)"
apt-get install -y zfsutils-linux
elif [ "$OS_ID" = "rocky" ]; then
dnf install -y epel-release
dnf config-manager --enable epel
dnf install -y "https://zfsonlinux.org/epel/zfs-release-2-3$(rpm --eval "%{dist}").noarch.rpm"
dnf config-manager --disable zfs
dnf config-manager --enable zfs-kmod
dnf install -y zfs
else
echo "Unsupported OS: $OS_ID"
exit 1
fi