1
0
mirror of synced 2026-02-13 10:54:09 +00:00

2006-05-08 21:26:46 by steve

Actually copy dotfiles from the skel directory.
  *sigh*
This commit is contained in:
steve
2006-05-08 21:26:46 +00:00
parent 93bd6205f9
commit 9545c87a85

View File

@@ -8,7 +8,10 @@
prefix=$1
if [ -d /etc/xen-tools/skel ]; then
cp -RL /etc/xen-tools/skel/* ${prefix}/
#
# Copy everything from skel directory, even "dotfiles".
#
(cd /etc/xen-tools/skel; tar -cf - . ) | (cd ${prefix}/; tar -xpf -)
else
echo "skel directory not present, ignoring."
fi