src/refresh-auth
author Cédric Krier <ced@b2ck.com>
Mon, 11 Sep 2017 21:38:10 +0200
changeset 375 a41e4382ea6e
parent 242 03d8f07230b3
permissions -rwxr-xr-x
Use repo vfs to join the server log The method join on repo has been removed in changeset edb7f628ef8b of mercurial.

#!/usr/bin/env python
"""
Rewrite ~/.ssh/authorized_keys by recursing through key directories
"""

import sys
import os
from mercurialserver import refreshauth, config

if len(sys.argv) != 1:
    sys.stderr.write("refresh-auth: must be called with no arguments (%s)\n" % sys.argv)
    sys.exit(-1)

config.initExe()

# To protect the authorized_keys file for innocent users, you have to have
# a ~/.mercurial-server file to run this.
if not config.configExists():
    print >>sys.stderr, "Must be run as the 'hg' user"
    sys.exit(-1)

refreshauth.refreshAuth()