From: Clint Adams Date: Sat, 2 Oct 2010 19:06:54 +0000 (-0400) Subject: ssh authorized_keys options test X-Git-Tag: monkeysphere_0.32-1~2^2~6^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bd9c23125a2c27721ddfc74a4c21e17f641bb6bd;p=monkeysphere.git ssh authorized_keys options test --- diff --git a/tests/basic b/tests/basic index 30cff06..9ae04b4 100755 --- a/tests/basic +++ b/tests/basic @@ -509,6 +509,25 @@ echo "### making sure we are back to normal..." monkeysphere-authentication update-users $(whoami) ssh_test true +# check ssh authorized_key options +echo +echo "##################################################" +echo "### checking ssh authorized_key option support..." +cp "$TESTHOME"/.monkeysphere/authorized_user_ids{,.bak} +echo ' no-X11-forwarding' >>"$TESTHOME"/.monkeysphere/authorized_user_ids +echo ' no-port-forwarding' >>"$TESTHOME"/.monkeysphere/authorized_user_ids +echo ' command="/bin/false"' >>"$TESTHOME"/.monkeysphere/authorized_user_ids +monkeysphere-authentication update-users $(whoami) +ssh_test /bin/true 1 +ssh_test /bin/false 1 +mv "$TESTHOME"/.monkeysphere/authorized_user_ids{.bak,} + +# ensure we're back to normal: +echo +echo "##################################################" +echo "### making sure we are back to normal..." +monkeysphere-authentication update-users $(whoami) +ssh_test true echo echo "##################################################"