mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-03 04:00:20 -08:00
32 lines
832 B
Bash
32 lines
832 B
Bash
#!/bin/bash
|
|
# info: ensure that pool.d folders are not empty
|
|
# options:
|
|
#
|
|
# The function ensure that pool.d folders are not empty
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Includes
|
|
source $VESTA/func/main.sh
|
|
source $VESTA/func/domain.sh
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
ensure_poold_folders_not_empty
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
# Logging
|
|
log_event "$OK" "$ARGUMENTS"
|
|
|
|
exit
|