Make the script idempotent

This commit is contained in:
nicolas.dorier
2018-05-18 01:30:06 +09:00
parent 8b8cad5bd1
commit 7a8ef8cab5

View File

@@ -249,5 +249,14 @@ end script" > /etc/init/start_containers.conf
fi
find "$ORIGINAL_DIRECTORY" -name "*.sh" -exec chmod +x {} \;
find "$ORIGINAL_DIRECTORY" -name "*.sh" -exec ln -s {} /usr/bin \;
cd $ORIGINAL_DIRECTORY
for scriptname in *.sh; do
echo $scriptname
chmod +x $scriptname
if [ -e /usr/bin/$scriptname ]; then
rm /usr/bin/$scriptname
fi
ln -s $scriptname /usr/bin
done