equal
deleted
inserted
replaced
544 r = src.config('bundle', 'mainreporoot') |
544 r = src.config('bundle', 'mainreporoot') |
545 if r: |
545 if r: |
546 dst.setconfig('bundle', 'mainreporoot', r) |
546 dst.setconfig('bundle', 'mainreporoot', r) |
547 |
547 |
548 # copy selected local settings to the remote ui |
548 # copy selected local settings to the remote ui |
549 for sect in ('auth', 'http_proxy'): |
549 for sect in ('auth', 'hostfingerprints', 'http_proxy'): |
550 for key, val in src.configitems(sect): |
550 for key, val in src.configitems(sect): |
551 dst.setconfig(sect, key, val) |
551 dst.setconfig(sect, key, val) |
552 v = src.config('web', 'cacerts') |
552 v = src.config('web', 'cacerts') |
553 if v: |
553 if v: |
554 dst.setconfig('web', 'cacerts', util.expandpath(v)) |
554 dst.setconfig('web', 'cacerts', util.expandpath(v)) |