Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAllan Jude <allan@klarasystems.com>2021-11-01 03:54:55 +0300
committerAllan Jude <allan@klarasystems.com>2022-06-02 18:53:09 +0300
commitd767d35308b2c631449ebb1ef066c2cca30cfe12 (patch)
treeda1a14360243dca1c8524d79890710bdd6d18351 /src
parent3d34a6c94c5d1a4708139db0b5625ab7a2b86733 (diff)
poudriere.conf.sample: fix git example URLs
The URL should not include the schema (https://) as the protocol is added based on the type specified when creating the jail/portstree ``` # poudriere ports -c -m git [00:00:00] Creating default fs at /usr/local/poudriere/ports/default... done [00:00:00] Cloning the ports tree...fatal: unable to access 'https://https://github.com/freebsd/freebsd-ports.git/': Could not resolve host: https [00:00:00] Error: fail ```
Diffstat (limited to 'src')
-rw-r--r--src/etc/poudriere.conf.sample4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/poudriere.conf.sample b/src/etc/poudriere.conf.sample
index ccba4989..4f6b2884 100644
--- a/src/etc/poudriere.conf.sample
+++ b/src/etc/poudriere.conf.sample
@@ -90,13 +90,13 @@ DISTFILES_CACHE=/usr/ports/distfiles
# mirror (default: git.FreeBSD.org/port.git)
#
# Example to use github mirror:
-#GIT_BASEURL=https://github.com/freebsd/freebsd-src.git
+#GIT_BASEURL=github.com/freebsd/freebsd-src.git
# If set the source tree marked to use git will use the defined
# mirror (default: git.FreeBSD.org/src.git)
#
# Example to use github mirror:
-#GIT_PORTSURL=https://github.com/freebsd/freebsd-ports.git
+#GIT_PORTSURL=github.com/freebsd/freebsd-ports.git
# If set the ports tree or source tree marked to use svn will use the defined
# mirror (default: svn.FreeBSD.org)