diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-28 12:25:34 +0000 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-23 15:24:50 +0200 |
commit | 1eee15e8527e0b85f00c946caf7fcb57579f2256 (patch) | |
tree | 5fada5e1f39d134902fb0884c4d535597a5e6b59 /functions | |
parent | 87b995597ca6804e989f667096a1b726ccddaaa1 (diff) | |
download | vyos-live-build-1eee15e8527e0b85f00c946caf7fcb57579f2256.tar.gz vyos-live-build-1eee15e8527e0b85f00c946caf7fcb57579f2256.zip |
config: obsolete unused --net-cow-* options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/configuration.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/functions/configuration.sh b/functions/configuration.sh index be3adf621..3fb6d6fe8 100755 --- a/functions/configuration.sh +++ b/functions/configuration.sh @@ -472,7 +472,6 @@ Prepare_config () LB_NET_ROOT_FILESYSTEM="${LB_NET_ROOT_FILESYSTEM:-nfs}" LB_NET_ROOT_PATH="${LB_NET_ROOT_PATH:-/srv/${LB_MODE}-live}" LB_NET_ROOT_SERVER="${LB_NET_ROOT_SERVER:-192.168.1.1}" - LB_NET_COW_FILESYSTEM="${LB_NET_COW_FILESYSTEM:-nfs}" LB_NET_TARBALL="${LB_NET_TARBALL:-true}" LB_ONIE="${LB_ONIE:-false}" @@ -697,11 +696,6 @@ Validate_config_permitted_values () exit 1 fi - if ! In_list "${LB_NET_COW_FILESYSTEM}" nfs cfs; then - Echo_error "You have specified an invalid value for LB_NET_COW_FILESYSTEM (--net-cow-filesystem)." - exit 1 - fi - if ! In_list "${LB_NET_ROOT_FILESYSTEM}" nfs cfs; then Echo_error "You have specified an invalid value for LB_NET_ROOT_FILESYSTEM (--net-root-filesystem)." exit 1 |