mirror of
https://github.com/aljazceru/btcpayserver-docker.git
synced 2026-01-14 13:14:50 +01:00
Make the script idempotent
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user