Merge branch 'master' of github.com:cloudbuilders/devstack

This commit is contained in:
Anthony Young 2011-09-28 15:13:20 -07:00
commit ee6d4f3bb4

View file

@ -153,7 +153,7 @@ cp -pR /lib/modules/`uname -r`/kernel/net $ROOTFS/lib/modules/`uname -r`/kernel/
# Gracefully cp only if source file/dir exists
function cp_it {
if [ -e $1 ] || [ -d $1 ]; then
cp -pr $1 $2
cp -pRL $1 $2
fi
}