1# vi: set ft=conf23# start soft serve4exec soft serve &5# wait for SSH server to start6ensureserverrunning SSH_PORT78# check default allow-keyless9soft settings allow-keyless true10soft settings allow-keyless11stdout 'true.*'1213# change allow-keyless and check14soft settings allow-keyless false15soft settings allow-keyless16stdout 'false.*'1718# check default anon-access19soft settings anon-access20stdout 'read-only.*'2122# change anon-access to all available options, and check them23soft settings anon-access no-access24soft settings anon-access25stdout 'no-access.*'2627soft settings anon-access read-only28soft settings anon-access29stdout 'read-only.*'3031soft settings anon-access read-write32soft settings anon-access33stdout 'read-write.*'3435soft settings anon-access admin-access36soft settings anon-access37stdout 'admin-access.*'3839# try to set a bad access40! soft settings anon-access nope41! stdout .42stderr .4344# stop the server45[windows] stopserver46