equal
deleted
inserted
replaced
75 pwd.getpwnam('hg') |
75 pwd.getpwnam('hg') |
76 except KeyError: |
76 except KeyError: |
77 subprocess.check_call( |
77 subprocess.check_call( |
78 "adduser --system --shell /bin/sh --group --disabled-password".split() + |
78 "adduser --system --shell /bin/sh --group --disabled-password".split() + |
79 ["--gecos", "Mercurial repositories", "hg"]) |
79 ["--gecos", "Mercurial repositories", "hg"]) |
80 subprocess.check_call([options.prefix + '/share/mercurial-server/init/hginit'], |
80 subprocess.check_call([options.prefix + '/share/mercurial-server/init/hginit', |
|
81 options.prefix + '/share/mercurial-server'], |
81 preexec_fn = becomeFunc('hg')) |
82 preexec_fn = becomeFunc('hg')) |
82 |
83 |