# HG changeset patch # User Matt Johnston # Date 1460466340 -28800 # Node ID ee2ffa044c7e84198ffb278b1d4fe6c989e82be4 # Parent a23386821e9feb1d14def8792239734ac3af2840 Add manpage and log for forced_command diff -r a23386821e9f -r ee2ffa044c7e dropbear.8 --- a/dropbear.8 Tue Apr 12 21:01:08 2016 +0800 +++ b/dropbear.8 Tue Apr 12 21:05:40 2016 +0800 @@ -91,6 +91,10 @@ .B \-I \fIidle_timeout Disconnect the session if no traffic is transmitted or received for \fIidle_timeout\fR seconds. .TP +.B \-c \fIforced_command +Disregard the command provided by the user and always run \fIforced_command\fR. This also +overrides any authorized_keys command= option. +.TP .B \-V Print the version @@ -129,6 +133,7 @@ .TP .B command=\fR"\fIforced_command\fR" Disregard the command provided by the user and always run \fIforced_command\fR. +The -c command line option overrides this. The authorized_keys file and its containing ~/.ssh directory must only be writable by the user, otherwise Dropbear will not allow a login using public diff -r a23386821e9f -r ee2ffa044c7e svr-runopts.c --- a/svr-runopts.c Tue Apr 12 21:01:08 2016 +0800 +++ b/svr-runopts.c Tue Apr 12 21:05:40 2016 +0800 @@ -351,6 +351,10 @@ } opts.idle_timeout_secs = val; } + + if (svr_opts.forced_command) { + dropbear_log(LOG_INFO, "Forced command set to '%s'", svr_opts.forced_command); + } } static void addportandaddress(const char* spec) {