/usr/lib/bup/cmd/bup-init is in bup 0.29-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #!/usr/bin/python2.7
import sys
from bup import git, options, client
from bup.helpers import log, saved_errors
optspec = """
[BUP_DIR=...] bup init [-r host:path]
--
r,remote= remote repository path
"""
o = options.Options(optspec)
(opt, flags, extra) = o.parse(sys.argv[1:])
if extra:
o.fatal("no arguments expected")
try:
git.init_repo() # local repo
except git.GitError as e:
log("bup: error: could not init repository: %s" % e)
sys.exit(1)
if opt.remote:
git.check_repo_or_die()
cli = client.Client(opt.remote, create=True)
cli.close()
|