summaryrefslogtreecommitdiffstats
path: root/core/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation')
-rwxr-xr-xcore/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation b/core/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation
index 33a861e6..29971666 100755
--- a/core/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation
+++ b/core/modules/printergui/data/opt/openslx/scripts/systemd-printergui_preparation
@@ -9,11 +9,11 @@ if [ ! -d "$DESTDIR" ]; then
mkdir -p "$DESTDIR" || exit 1
fi
-mv "$SRCDIR"/* "$DESTDIR"
+mv -n "$SRCDIR"/* "$DESTDIR"
cd "$SRCDIR"
for i in "$DESTDIR"/*; do
- ln -sf "$PRINTPWGUI" $(basename "$i")
+ ln -s "$PRINTPWGUI" $(basename "$i")
done
exit 0