src/refresh-auth
author David Douard <david.douard@logilab.fr>
Mon, 03 Nov 2014 11:12:35 +0100
changeset 371 e9ce904b62a9
parent 242 03d8f07230b3
permissions -rwxr-xr-x
[test] add unit tests for ruleset We extract the rules building logic from readfile into a Ruleset.buildrules() method to ease testing.

#!/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()