7 lines
102 B
Bash
7 lines
102 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ! [ -f "/etc/ixvd/version" ]; then
|
||
|
echo "applying overlay..."
|
||
|
cp -r skel/. /
|
||
|
fi
|