Hallöchen, ich verzweifel solangsam.. Ich habe ein shell script was mir im endefeckt etwas arbeit abnehmen soll für fastDL.
Code
!/bin/bash
# Cofig
# Web server path. This directory must exist before running this script!
FASTDLROOT=/var/www/fastdl.de
# Gmod install path(one with bin, assets, lua.. directories)
GMODROOT=/home/ogp_agent/OGP_User_Files/gmod/garrysmod
# Config end
###
# Use pbzip2 for faster compression if installed
BZIP=bzip2
if hash pbzip2 2>/dev/null; then
BZIP=pbzip2
fi
echo -e "\e[32mExtracting addons\e[39m"
find $GMODROOT/addons/ -exec $GMODROOT extract -file {} -out $FASTDLROOT \;
echo -e "\e[32mCompressing addons\e[39m"
find $FASTDLROOT -type f -not -name "*.bz2" -exec $BZIP -zfkv {} \;
echo -e "\e[32mExtracting maps\e[39m"
find $GMODROOT/maps/ -exec $GMODROOT extract -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting particles\e[39m"
find $GMODROOT/particles/ -exec $GMODROOT extract -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting sound\e[39m"
find $GMODROOT/sound/ -exec $GMODROOT -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting resource\e[39m"
find $GMODROOT/resource/ -exec $GMODROOT extract -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting materials\e[39m"
find $GMODROOT/materials/ -exec $GMODROOT extract -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting models\e[39m"
find $GMODROOT/models/ -exec $GMODROOT extract -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting scenes\e[39m"
find $GMODROOT/scenes/ -exec $GMODROOT -file {} -out $FASTDLROOT \;
echo -e "\e[32mExtracting scripts\e[39m"
find $GMODROOT/scripts/ -exec $GMODROOT -file {} -out $FASTDLROOT \;
echo -e "\e[32mGenerating fastdl.lua\e[39m"
echo "if (SERVER) then" > $GMODROOT/lua/autorun/fastdl.lua
find $FASTDLROOT -type f -printf '\tresource.AddFile("%P")\n' >> $GMODROOT/lua/autorun/fastdl.lua
echo "end" >> $GMODROOT/lua/autorun/fastdl.lua
Alles anzeigen
sobald ich das script ausführe sagt er mir folgendes:
find: '/home/ogp_agent/OGP_User_Files/gmod/garrysmod': Permission denied
vll kann mir jemand aushelfen? Weiterhelfen?..
Ich verzweifel drann.
Danke und Frohe Weinachten.