From: Joey Hess Date: Mon, 30 Nov 2009 19:45:53 +0000 (-0500) Subject: Add --insecure option that can be used to ignore SSL cert errors when bootstrapping... X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/1cccf09a6874e53fb8c28bf5d89b0b51c917942a Add --insecure option that can be used to ignore SSL cert errors when bootstrapping. (Pavel Avgustinov) --- diff --git a/debian/changelog b/debian/changelog index a17308a..d91b3f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ mr (0.45) UNRELEASED; urgency=low * Fix pod error. Closes: #558012 * bootstrap: Improve stats display. + * Add --insecure option that can be used to ignore SSL cert errors + when bootstrapping. (Pavel Avgustinov) -- Joey Hess Wed, 25 Nov 2009 17:27:23 -0500 diff --git a/debian/control b/debian/control index 204a909..d58055d 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ Package: mr Architecture: all Section: vcs Depends: ${misc:Depends} -Suggests: subversion, git-core, cvs, bzr, mercurial, darcs, liburi-perl +Suggests: subversion, git-core, cvs, bzr, mercurial, darcs, liburi-perl, curl Recommends: libwww-perl, libhtml-parser-perl, perl Description: a Multiple Repository management tool The mr(1) command can checkout, update, or perform other actions on diff --git a/mr b/mr index f7509c9..620ad7f 100755 --- a/mr +++ b/mr @@ -115,9 +115,6 @@ specified, the current directory will be used. If the .mrconfig file includes a repository named ".", that is checked out into the top of the specified directory. -To bootstrap from a SSL url with an untrusted certificate, you may -need to specify the -k option. - =item list (or ls) List the repositories that mr will act on. @@ -1436,7 +1433,7 @@ sub getopts { "v|verbose" => \$verbose, "q|quiet" => \$quiet, "s|stats" => \$stats, - "k|insecure" => \$insecure, + "k|insecure" => \$insecure, "i|interactive" => \$interactive, "n|no-recurse:i" => \$max_depth, "j|jobs:i" => \$jobs,