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