Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
56e2376e
Unverified
Commit
56e2376e
authored
Mar 14, 2018
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
containers: drop vagrant support, noone's maintaining it
parent
a0638767
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
72 deletions
+0
-72
.gitignore
containers/vagrant/.gitignore
+0
-1
Vagrantfile
containers/vagrant/Vagrantfile
+0
-38
centos.sh
containers/vagrant/provisioners/shell/centos.sh
+0
-11
debian.sh
containers/vagrant/provisioners/shell/debian.sh
+0
-11
ubuntu.sh
containers/vagrant/provisioners/shell/ubuntu.sh
+0
-11
No files found.
containers/vagrant/.gitignore
deleted
100644 → 0
View file @
a0638767
.vagrant
containers/vagrant/Vagrantfile
deleted
100644 → 0
View file @
a0638767
# -*- mode: ruby -*-
# vi: set ft=ruby :
require
'yaml'
VAGRANTFILE_API_VERSION
=
2
VM_RAM
=
2048
Vagrant
.
configure
(
VAGRANTFILE_API_VERSION
)
do
|
config
|
config
.
vm
.
define
"ubuntu"
,
:primary
=>
true
do
|
ubuntu
|
ubuntu
.
vm
.
box
=
"ubuntu/trusty64"
ubuntu
.
vm
.
provision
"shell"
,
:path
=>
"provisioners/shell/ubuntu.sh"
end
config
.
vm
.
define
"debian"
,
:primary
=>
true
do
|
debian
|
debian
.
vm
.
box
=
"debian/jessie64"
debian
.
vm
.
provision
"shell"
,
:path
=>
"provisioners/shell/debian.sh"
end
config
.
vm
.
define
"centos"
,
:autostart
=>
false
do
|
centos
|
centos
.
vm
.
box
=
"centos/7"
centos
.
vm
.
provision
"shell"
,
:path
=>
"provisioners/shell/centos.sh"
end
config
.
vm
.
provider
"virtualbox"
do
|
vb
|
vb
.
memory
=
VM_RAM
end
config
.
vm
.
provider
"libvirt"
do
|
lv
|
lv
.
memory
=
VM_RAM
config
.
vm
.
synced_folder
"."
,
"/home/vagrant/sync"
,
:disabled
=>
true
end
config
.
vm
.
synced_folder
"."
,
"/vagrant"
,
:disabled
=>
true
config
.
vm
.
synced_folder
"../../"
,
"/home/vagrant/go/src/github.com/ethereum/go-ethereum"
end
containers/vagrant/provisioners/shell/centos.sh
deleted
100755 → 0
View file @
a0638767
#!/bin/bash
sudo
yum
install
-y
git wget
sudo
yum update
-y
wget
--continue
https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
sudo tar
-C
/usr/local
-xzf
go1.8.1.linux-amd64.tar.gz
GETH_PATH
=
"~vagrant/go/src/github.com/ethereum/go-ethereum/build/bin/"
echo
"export PATH=
$PATH
:/usr/local/go/bin:
$GETH_PATH
"
>>
~vagrant/.bashrc
containers/vagrant/provisioners/shell/debian.sh
deleted
100755 → 0
View file @
a0638767
#!/bin/bash
sudo
apt-get
install
-y
build-essential git-all wget
sudo
apt-get update
wget
--continue
https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
sudo tar
-C
/usr/local
-xzf
go1.8.1.linux-amd64.tar.gz
GETH_PATH
=
"~vagrant/go/src/github.com/ethereum/go-ethereum/build/bin/"
echo
"export PATH=
$PATH
:/usr/local/go/bin:
$GETH_PATH
"
>>
~vagrant/.bashrc
containers/vagrant/provisioners/shell/ubuntu.sh
deleted
100755 → 0
View file @
a0638767
#!/bin/bash
sudo
apt-get
install
-y
build-essential git-all wget
sudo
apt-get update
wget
--continue
https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
sudo tar
-C
/usr/local
-xzf
go1.8.1.linux-amd64.tar.gz
GETH_PATH
=
"~vagrant/go/src/github.com/ethereum/go-ethereum/build/bin/"
echo
"export PATH=
$PATH
:/usr/local/go/bin:
$GETH_PATH
"
>>
~vagrant/.bashrc
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment