Added a function and some variable

This commit is contained in:
Daniel Sosnowski
2025-12-03 11:29:01 +01:00
parent 1fee221c06
commit 92522071ae

View File

@@ -3,27 +3,7 @@
declare -i diskUsage
vhostDir="/var/www/vhosts"
diskUsage=$(df -h | grep /dev/mapper/tulup--vg-root | awk '{print $5}' | cut -d% -f1)
if [[ $diskUsage -ge 50 ]]
then
cd "$vhostDir"
find . -maxdepth 1 -name "*.decostores.*" > "/tmp/subscriptions.txt"
echo -e "Wykryto subskrypcje:\n"
cat /tmp/subscriptions.txt | cut -d/ -f2
readarray -t subscriptionList < /tmp/subscriptions.txt
echo -e "\n"
echo -e "Rozpoczynam czyszczenie cache...\n"
for subscription in "${subscriptionList[@]}"
do
if [[ -d "$subscription/httpdocs/shopsystem/application/cache/boxes" ]]
then
cd "$subscription/httpdocs/shopsystem/application/cache/boxes"
fi
function loopDirs {
echo -e "Czyszczę cache w subskrybcji $subscription...\n"
ls -1 > "/tmp/dirList.txt"
readarray -t dirList < /tmp/dirList.txt
@@ -37,6 +17,40 @@ then
cd ..
fi
done
}
diskUsage=$(df -h | grep /dev/mapper/Fabricsy--vg-root | awk '{print $5}' | cut -d% -f1)
if [[ $diskUsage -ge 50 ]]
then
cd "$vhostDir"
find . -maxdepth 1 -name "*.decostores.*" > "/tmp/subscriptions.txt"
echo -e "Wykryto subskrypcje:\n"
cat /tmp/subscriptions.txt | cut -d/ -f2
readarray -t subscriptionList < /tmp/subscriptions.txt
echo -e "\n"
echo -e "Rozpoczynam czyszczenie cache...\n"
boxesPath="$subscription/httpdocs/shopsystem/application/cache/boxes"
smarty_compiledPath="$subscription/httpdocs/shopsystem/application/cache/smarty_compiled"
for subscription in "${subscriptionList[@]}"
do
if [[ -d "$boxesPath" ]]
then
cd "$boxesPath"
loopDirs
fi
if [[ -d "$smarty_compiledPath" ]]
then
cd "$smarty_compiledPath"
loopDirs
fi
cd "$vhostDir"
done