rootcopy support

This commit is contained in:
Tomas M
2012-10-20 22:39:31 -05:00
parent 77d0e6ea51
commit d10983c0ac
2 changed files with 15 additions and 0 deletions
+12
View File
@@ -367,6 +367,18 @@ persistent_changes()
fi
}
# Copy content of rootcopy directory to union
# $1 = data directory
# $2 = union directory
copy_rootcopy_content()
{
if [ "$(find "$1/rootcopy/" -maxdepth 1 2>/dev/null)" != "" ]; then
echo_green_star
echo "Copying content of rootcopy directory..."
cp -a "$1/rootcopy/*" "$2"
fi
}
# Copy data to RAM if requested
# $1 = live data directory
# $2 = changes directory