diff --git a/propagator/agent/__init__.py b/propagator/agent/__init__.py index 5fd6517..c10a9c7 100644 --- a/propagator/agent/__init__.py +++ b/propagator/agent/__init__.py @@ -1,56 +1,56 @@ # This file is part of Propagator, a KDE project # # Copyright 2015 Boudhayan Gupta # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. Neither the name of KDE e.V. (or its successor approved by the # membership of KDE e.V.) nor the names of its contributors may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import os import sys import shlex from . import config from . import repo from . import gitcmd from . import control def main(): cmd = os.environ.get("SSH_ORIGINAL_COMMAND") if not cmd: print("Sorry, this account does not provide shell access.") sys.exit(1) entry = shlex.split(cmd)[0] if entry == "anongitctl": if not control.handle_command(cmd): print("FAIL") sys.exit(192) print("OK") sys.exit(0) elif entry in ("git-receive-pack", "git-upload-pack", "git-upload-archive"): gitcmd.handle_command(cmd) sys.exit(192) else: - print("ERROR: This command cannot be accepted. This account does not provide shell access", file = sys.stderr) + print("ERROR: Invalid command. This account does not provide shell access", file = sys.stderr)