aboutsummaryrefslogtreecommitdiff
path: root/contrib/gitian/gitian-build.py
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2019-12-29 01:38:19 +0100
committerTheCharlatan <seb.kung@gmail.com>2020-01-06 13:18:06 +0100
commitc11e64fc4cd68fac2c491747c07073ca8714f7bf (patch)
tree68015810a98128cd1db43cdbbb8841f097b3c2f9 /contrib/gitian/gitian-build.py
parentMerge pull request #6057 (diff)
downloadmonero-c11e64fc4cd68fac2c491747c07073ca8714f7bf.tar.xz
Gitian: Change lxc ip link
The ip link currently listed in the README no longer works on the newest version of lxc shipped with ubuntu 18.04, this commit corrects this.
Diffstat (limited to '')
-rwxr-xr-xcontrib/gitian/gitian-build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gitian/gitian-build.py b/contrib/gitian/gitian-build.py
index 64eb218bb..f8927c83b 100755
--- a/contrib/gitian/gitian-build.py
+++ b/contrib/gitian/gitian-build.py
@@ -157,9 +157,9 @@ def main():
elif not args.kvm:
os.environ['USE_LXC'] = '1'
if not 'GITIAN_HOST_IP' in os.environ.keys():
- os.environ['GITIAN_HOST_IP'] = '10.0.3.1'
+ os.environ['GITIAN_HOST_IP'] = '10.0.2.2'
if not 'LXC_GUEST_IP' in os.environ.keys():
- os.environ['LXC_GUEST_IP'] = '10.0.3.5'
+ os.environ['LXC_GUEST_IP'] = '10.0.2.5'
# Disable MacOS build if no SDK found
args.nomac = False