Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vagrantsetup
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
devbox
vagrantsetup
Commits
77cb9cab
Commit
77cb9cab
authored
Aug 19, 2019
by
Reimar Stier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add jetbrains installer role
parent
3de11574
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
1 deletion
+21
-1
.gitignore
.gitignore
+2
-0
Readme.md
Readme.md
+5
-0
Vagrantfile
Vagrantfile
+3
-1
playbook.yml
playbook.yml
+5
-0
requirements.yml
requirements.yml
+2
-0
Readme.md
windows/Readme.md
+4
-0
No files found.
.gitignore
View file @
77cb9cab
*.vmdk
*.vmdk
.vagrant/
.vagrant/
.idea/
roles/
Readme.md
View file @
77cb9cab
...
@@ -2,3 +2,8 @@
...
@@ -2,3 +2,8 @@
choco install vagrant
choco install vagrant
vagrant plugin install vagrant-disksize
vagrant plugin install vagrant-disksize
vagrant plugin install vagrant-proxyconf
vagrant plugin install vagrant-proxyconf
# Debug playbook in vagrant box
vagrant ssh devbox
cd /vagrant
ansible-playbook playbook.yml --connection=local -i devbox, -e ansible_become=true
Vagrantfile
View file @
77cb9cab
...
@@ -31,7 +31,9 @@ Vagrant.configure("2") do |config|
...
@@ -31,7 +31,9 @@ Vagrant.configure("2") do |config|
vb
.
cpus
=
4
vb
.
cpus
=
4
vb
.
name
=
BOX_NAME
vb
.
name
=
BOX_NAME
# Adding a SATA controller that allows 4 hard drives
# Adding a SATA controller that allows 4 hard drives
vb
.
customize
[
'storagectl'
,
:id
,
'--name'
,
'SATA Controller'
,
'--add'
,
'sata'
,
'--portcount'
,
4
]
unless
File
.
exist?
(
DISKS
[
0
][
"name"
]
+
".vmdk"
)
vb
.
customize
[
'storagectl'
,
:id
,
'--name'
,
'SATA Controller'
,
'--add'
,
'sata'
,
'--portcount'
,
4
]
end
DISKS
.
each
do
|
disk
|
DISKS
.
each
do
|
disk
|
datadisk
=
disk
[
"name"
]
+
".vmdk"
datadisk
=
disk
[
"name"
]
+
".vmdk"
...
...
playbook.yml
View file @
77cb9cab
---
---
-
name
:
playbook
-
name
:
playbook
hosts
:
devbox
hosts
:
devbox
vars
:
jetbrains_installer_apps
:
-
name
:
"
Toolbox
App"
-
name
:
"
IntelliJ
IDEA
Ultimate"
roles
:
roles
:
-
{
role
:
"
geerlingguy.docker"
,
docker_users
:
[
"
vagrant"
],
tags
:
"
docker"
}
-
{
role
:
"
geerlingguy.docker"
,
docker_users
:
[
"
vagrant"
],
tags
:
"
docker"
}
-
{
role
:
'
jetbrains_installer'
,
tags
:
[
'
jetbrains'
]}
requirements.yml
View file @
77cb9cab
-
src
:
"
geerlingguy.docker"
-
src
:
"
geerlingguy.docker"
-
name
:
"
jetbrains_installer"
src
:
"
git+https://github.com/reimarstier/ansible-role-jetbrains_installer.git"
windows/Readme.md
View file @
77cb9cab
...
@@ -15,6 +15,10 @@ choco install -y firefox vagrant virtualbox
...
@@ -15,6 +15,10 @@ choco install -y firefox vagrant virtualbox
googlechrome atom 7zip
googlechrome atom 7zip
choco install git --params="'/GitAndUnixToolsOnPath /NoAutoCrlf'" -y
choco install git --params="'/GitAndUnixToolsOnPath /NoAutoCrlf'" -y
airtame postman
anaconda3
Pycharm
# Other resources
# Other resources
*
Vagrant + Windows https://codeblog.dotsandbrackets.com/vagrant-windows/
*
Vagrant + Windows https://codeblog.dotsandbrackets.com/vagrant-windows/
...
...
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