mirror of
https://github.com/zebrajr/HomeLab.git
synced 2026-01-15 12:15:06 +00:00
9 lines
234 B
Bash
9 lines
234 B
Bash
#!/bin/bash
|
|
if [ "$SETUP_WORKSTATION" != true ]; then
|
|
echo "${SKIPPING_PRE_TEXT} audacity. SETUP_WORKSTATION is not true"
|
|
return 0
|
|
fi
|
|
|
|
echo "${INSTALLING_PRE_TEXT} audacity"
|
|
eval "sudo dnf install audacity -y $OUTPUT_CONTROL"
|