src/refresh-auth
author Paul Crowley <paul@lshift.net>
Wed, 02 Dec 2009 18:45:14 +0000
branchdebian
changeset 235 2bd512064f7d
parent 217 32b431977bf9
child 242 03d8f07230b3
permissions -rwxr-xr-x
Added tag debian_1.0-1 for changeset 60c2d676a754

#!/usr/bin/env python
# Copyright 2008-2009 LShift Ltd

# WARNING
# This script completely destroys your ~/.ssh/authorized_keys
# file every time it is run
# WARNING

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()