]> arthur.barton.de Git - bup.git/blob - lib/cmd/init-cmd.py
e2ddeaa0f4b707a8d5e12e51bcbe6d3e439ddd1b
[bup.git] / lib / cmd / init-cmd.py
1 #!/bin/sh
2 """": # -*-python-*-
3 # https://sourceware.org/bugzilla/show_bug.cgi?id=26034
4 export "BUP_ARGV_0"="$0"
5 arg_i=1
6 for arg in "$@"; do
7     export "BUP_ARGV_${arg_i}"="$arg"
8     shift
9     arg_i=$((arg_i + 1))
10 done
11 # Here to end of preamble replaced during install
12 bup_python="$(dirname "$0")/../../config/bin/python" || exit $?
13 exec "$bup_python" "$0"
14 """
15 # end of bup preamble
16
17 from __future__ import absolute_import
18
19 # Intentionally replace the dirname "$0" that python prepends
20 import os, sys
21 sys.path[0] = os.path.dirname(os.path.realpath(__file__)) + '/..'
22
23 from bup import compat, git, options, client
24 from bup.helpers import log, saved_errors
25 from bup.compat import argv_bytes
26
27
28 optspec = """
29 [BUP_DIR=...] bup init [-r host:path]
30 --
31 r,remote=  remote repository path
32 """
33 o = options.Options(optspec)
34 opt, flags, extra = o.parse(compat.argv[1:])
35
36 if extra:
37     o.fatal("no arguments expected")
38
39
40 try:
41     git.init_repo()  # local repo
42 except git.GitError as e:
43     log("bup: error: could not init repository: %s" % e)
44     sys.exit(1)
45
46 if opt.remote:
47     git.check_repo_or_die()
48     cli = client.Client(argv_bytes(opt.remote), create=True)
49     cli.close()