diff options
author | Simon Rettberg | 2024-05-27 13:23:02 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-05-27 13:23:02 +0200 |
commit | 9c79528ded4a419f82a28a3c7b9bf5e6bd2d398a (patch) | |
tree | 83fafe9b4aa09001a8be8976c49f23f5b2c34920 /dev-tools | |
parent | Remove unused var from example config (diff) | |
download | systemd-init-9c79528ded4a419f82a28a3c7b9bf5e6bd2d398a.tar.gz systemd-init-9c79528ded4a419f82a28a3c7b9bf5e6bd2d398a.tar.xz systemd-init-9c79528ded4a419f82a28a3c7b9bf5e6bd2d398a.zip |
Update example config some more: unused vars, wrong syntax
Diffstat (limited to 'dev-tools')
-rw-r--r-- | dev-tools/example-openslx.config | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/dev-tools/example-openslx.config b/dev-tools/example-openslx.config index b657f8f5..6d0a1fc2 100644 --- a/dev-tools/example-openslx.config +++ b/dev-tools/example-openslx.config @@ -1,9 +1,9 @@ # The openslx config will be placed in "/etc/openslx" in initramfs and copied # to "/opt/openslx/config" in the main rootfs image. -# A comma separated list of dnbd3 server host names or ip addresses where -# the read only image can be accessed. The first matching ip will be used. -SLX_DNBD3_SERVERS='10.1.1.1,10.1.1.2' +# A space separated list of dnbd3 server host names or ip addresses where +# the read only image can be accessed. +SLX_DNBD3_SERVERS='10.1.1.1 10.1.1.2' # Path on remote dnbd3 server for basic readonly image. SLX_DNBD3_IMAGE='centos/centos-rootfs.qcow2' # DNBD3 image revision to use. @@ -42,8 +42,6 @@ SLX_WRITABLE_DEVICE_IDENTIFIER='44' SLX_WRITABLE_DEVICE_PARTITION_TABLE=' thin-snapshot root 100% ' -# Size in MB of the RAMdisk to use as a scratch fallback. -SLX_RAMDISK_SIZE_IN_MB='' # If empty we will end up in an empty fstab file. If you want to reuse the # original fstab (from the template system) provide a dummy script like "true". SLX_GENERATE_FSTAB_SCRIPT=' @@ -51,5 +49,3 @@ echo "/dev/mapper/root / btrfs subvol=root 0 0" >> "$NEWROOT/etc/fstab" ' # Specifies mount options for the final root location. SLX_MOUNT_ROOT_OPTIONS='-o subvol=root' -# Path where all the logs should be placed. Deprecated (kind of). -SLX_LOG_FILE_PATH='/var/log/openslx' |