summaryrefslogtreecommitdiffstats
path: root/packager/openslx.functions
diff options
context:
space:
mode:
Diffstat (limited to 'packager/openslx.functions')
-rw-r--r--packager/openslx.functions12
1 files changed, 3 insertions, 9 deletions
diff --git a/packager/openslx.functions b/packager/openslx.functions
index 6a95f1f0..138e5f39 100644
--- a/packager/openslx.functions
+++ b/packager/openslx.functions
@@ -286,15 +286,9 @@ clone_host() {
add_cleanup touch ${RSYNC_TARGET}/.stage4
# run rsync with the exclude/include lists created earlier
cat "$INCLUDE" "$EXCLUDE" | \
- rsync --acls \
- --hard-links \
- --xattrs \
- --archive \
- --delete \
- --delete-excluded \
- --numeric-ids \
+ rsync $RSYNC_OPTS \
--exclude-from=- \
- --rsh "${RSYNC_RSH}" \
+ --rsh "${RSYNC_RSH}" \
"${RSYNC_SOURCE}" \
"${RSYNC_TARGET}"
@@ -324,7 +318,7 @@ create_container() {
# which size for the qcow2 container?
local CONTAINER_SIZE="${DEFAULT_CONTAINER_SIZE}"
- [ -z "${CONTAINER_SIZE}" ] && CONTAINER_SIZE="25G"
+ [ -z "${CONTAINER_SIZE}" ] && CONTAINER_SIZE="20G"
# so far so good
pinfo "Creating qcow2-container '${CONTAINER_PATH}'"