Browse Source

refactor: simplify directory creation in install_config.sh

This commit simplifies the code for creating config directories in the install_config.sh file. Instead of using separate variables for each directory path, it now uses a single variable to create the necessary directories. This improves readability and reduces redundancy in the code.
feature/dst-changes
Daniel Gibbs 2 years ago
parent
commit
1444d13544
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 4
      lgsm/modules/install_config.sh

4
lgsm/modules/install_config.sh

@ -12,10 +12,10 @@ fn_check_cfgdir() {
changes=""
if [ "${shortname}" == "dst" ]; then
echo -en "creating config directory [ ${italic}${clustercfgdir}${default} ]"
changes+=$(mkdir -pv "${clustercfgfullpath}")
changes+=$(mkdir -pv "${clustercfgdir}")
elif [ "${shortname}" == "arma3" ]; then
echo -en "creating config directory [ ${italic}${networkcfgdir}${default} ]"
changes+=$(mkdir -pv "${networkcfgfullpath}")
changes+=$(mkdir -pv "${networkcfgdir}")
else
echo -en "creating config directory [ ${italic}${servercfgdir}${default} ]"
changes+=$(mkdir -pv "${servercfgdir}")

Loading…
Cancel
Save