summaryrefslogtreecommitdiffstats
path: root/dev-tools
diff options
context:
space:
mode:
authorjandob2016-03-29 19:06:18 +0200
committerjandob2016-03-29 19:06:18 +0200
commit252b073349d374dc23f55701c4abdc1ffb4ade97 (patch)
treeae5965509e6089a6a3a64fc28586b09be655a788 /dev-tools
parentadd tee dependency (diff)
downloadsystemd-init-252b073349d374dc23f55701c4abdc1ffb4ade97.tar.gz
systemd-init-252b073349d374dc23f55701c4abdc1ffb4ade97.tar.xz
systemd-init-252b073349d374dc23f55701c4abdc1ffb4ade97.zip
add logging to file functionality
Diffstat (limited to 'dev-tools')
-rw-r--r--dev-tools/example-openslx.config15
1 files changed, 8 insertions, 7 deletions
diff --git a/dev-tools/example-openslx.config b/dev-tools/example-openslx.config
index 57197eec..42d30e07 100644
--- a/dev-tools/example-openslx.config
+++ b/dev-tools/example-openslx.config
@@ -3,15 +3,15 @@
# The openslx config will be placed in "/etc/openslx" in initramfs.
-# Location where this config file should be placed in final booted template
+# Location where this config file should be placed in the final booted template
# system.
SLX_CONFIGURATION_LOCATION='/opt/openslx/'
# A comma separated list of dnbd3 server host names or ip addresses where
-# the read only image should be provided. The first matching ip will be used.
+# the read only image can be accessed. The first matching ip will be used.
SLX_DNBD3_SERVERS='132.230.4.201,132.230.4.202,10.0.2.2'
# dnbd3 image version to use.
SLX_DNBD3_RID='0'
-# Device name where the read only image should be injected.
+# Device name to which the read only image will be connected.
SLX_DNBD3_DEVICE='/dev/dnbd0'
# Path on remote dnbd3 server for basic readonly image.
SLX_DNBD3_IMAGE='archLinux/archLinux.vmdk'
@@ -21,12 +21,12 @@ SLX_SYSTEM_PARTITION_IDENTIFIER='system'
# Script to run and set the read only device.
# (e.g. "lvm_scan && read_only_partition=/dev/centos/root")
SLX_SYSTEM_PARTITION_PREPARATION_SCRIPT=''
-# Device to mount and save the writable binary difference fill in. Empty means
-# no writable device should be injected and ram will be used as fallback.
+# Device to mount and save the writable binary diff to. If Empty or not found,
+# a ramdisk will be used as fallback.
SLX_WRITABLE_DEVICE_IDENTIFIER=''
# Time to wait for the writable device in seconds.
SLX_WRITABLE_DEVICE_IDENTIFIER_TIMEOUT_IN_SECONDS=10
-# File path for binary difference file.
+# File path for binary difference file. If empty the whole device will be used.
SLX_WRITABLE_DEVICE_STORAGE_FILE_PATH='storage.img'
# NOTE: if the filesystem is any other than ext4, then the corresponding
# filesystem tools have to be added to the initramfs manually. (use the dracut
@@ -41,7 +41,8 @@ SLX_WRITABLE_DEVICE_PERSISTENT='no'
SLX_GENERATE_FSTAB_SCRIPT='
echo "/dev/mapper/root / btrfs subvol=root 0 0" >> "$NEWROOT/etc/fstab"
'
-# Upper bound for ram using. If empty all available ram will be used.
+# Upper bound for ram usage for the binary diff. If empty all available ram
+# will be used.
SLX_RAMDISK_SIZE_IN_KB=''
# Specifies mount options for the final root location where we want to pivot
# root in.