parent
d21a55aac9
commit
3379935118
@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/with-contenv bash
|
||||||
|
|
||||||
|
# Remove existing LAD start script
|
||||||
|
if [ -f "/config/scripts/AudioPostProcessing.bash" ]; then
|
||||||
|
rm "/config/scripts/AudioPostProcessing.bash"
|
||||||
|
sleep 0.1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Copy AudioPostProcessing into scripts directory
|
||||||
|
if [ ! -f "/config/scripts/AudioPostProcessing.bash" ]; then
|
||||||
|
cp "/scripts/AudioPostProcessing.bash" "/config/scripts/AudioPostProcessing.bash"
|
||||||
|
chmod 0777 "/config/scripts/AudioPostProcessing.bash"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Reference in new issue