From 4f09f456c64fd6326c92cd334d70681e44d6780e Mon Sep 17 00:00:00 2001 Message-Id: <4f09f456c64fd6326c92cd334d70681e44d6780e.1714052700.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 9 Mar 2013 05:50:44 +0000 Subject: [PATCH] cmd-admin.py: Add `source' command to remote command context. Organization: Straylight/Edgeware From: Mark Wooding Now remote-control clients can fetch our source code too. Question: should the master instance fetch source code for all of its satellites? --- cmd-admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd-admin.py b/cmd-admin.py index dc52461..8cea8e7 100644 --- a/cmd-admin.py +++ b/cmd-admin.py @@ -164,7 +164,7 @@ def cmd_editacct(user, service, alias = None, noalias = False): user = user, service = service) @SC.subcommand( - 'source', ['admin', 'userv'], """\ + 'source', ['admin', 'userv', 'remote'], """\ Write source code (in `.tar.gz' format) to standard output.""") def cmd_source_admin(): AGPL.source(OUT) -- [mdw]