mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-01-15 02:36:59 +01:00
18 lines
310 B
Bash
Executable File
18 lines
310 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d /mnt/overlay/etc ]; then
|
|
mkdir -p /mnt/overlay/etc
|
|
cp -a /etc /mnt/overlay/etc
|
|
fi
|
|
|
|
if [ ! -d /mnt/overlay/root ]; then
|
|
mkdir -p /mnt/overlay/root
|
|
cp -a /root /mnt/overlay/root
|
|
fi
|
|
|
|
if [ ! -d /mnt/overlay/home ]; then
|
|
mkdir -p /mnt/overlay/home
|
|
cp -a /home /mnt/overlay/home
|
|
fi
|
|
|