src/refresh-auth
author Paul Crowley <paul@lshift.net>
Thu, 12 Nov 2009 11:19:36 +0000
changeset 208 31e862df1884
parent 165 3606d60b07e5
child 211 0cd59649772c
permissions -rwxr-xr-x
Added tag release_0.9 for changeset fed42d3f5311

#!/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, paths

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

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

paths.setExePath()
refreshauth.refreshAuth()