mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 04:02:12 +00:00
12 lines
266 B
Bash
12 lines
266 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -f /opt/magic_mirror/modules ]; then
|
|
cp -Rn /opt/magic_mirror/unmount_modules/. /opt/magic_mirror/modules
|
|
fi
|
|
|
|
if [ ! -f /opt/magic_mirror/config ]; then
|
|
cp -Rn /opt/magic_mirror/unmount_config/. /opt/magic_mirror/config
|
|
fi
|
|
|
|
node serveronly
|