mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-25 14:30:11 +00:00
22 lines
564 B
Bash
22 lines
564 B
Bash
#!/bin/sh -e
|
|
|
|
. ../../common-script.sh
|
|
|
|
# Install virtualization tools to enable virtual machines
|
|
configureVirtualization() {
|
|
case "$PACKAGER" in
|
|
dnf)
|
|
printf "%b\n" ${YELLOW}"Installing virtualization tools...${RC}"
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y @virtualization
|
|
printf "%b\n" "${GREEN}Installed virtualization tools...${RC}"
|
|
;;
|
|
*)
|
|
printf "%b\n" "${RED}Unsupported distribution: $DTYPE${RC}"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
configureVirtualization
|