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
0952965f
Commit
0952965f
authored
Aug 30, 2019
by
Reimar Stier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update virtualbox graphics memory settings, install xfce4 desktop
parent
cad450b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
Vagrantfile
Vagrantfile
+7
-1
playbook.yml
playbook.yml
+6
-1
requirements.yml
requirements.yml
+2
-0
No files found.
Vagrantfile
View file @
0952965f
...
@@ -19,7 +19,7 @@ BOX_NAME = "devbox"
...
@@ -19,7 +19,7 @@ BOX_NAME = "devbox"
Vagrant
.
configure
(
"2"
)
do
|
config
|
Vagrant
.
configure
(
"2"
)
do
|
config
|
config
.
vm
.
box
=
"geerlingguy/debian10"
config
.
vm
.
box
=
"geerlingguy/debian10"
config
.
vm
.
network
"private_network"
,
ip:
"192.168.200.4"
,
adapter:
2
config
.
vm
.
network
"private_network"
,
ip:
ENV
[
"DEVBOX_IP"
]
||
"192.168.200.4"
,
adapter:
2
config
.
vm
.
hostname
=
"devbox.devops.detss.corpintra.net"
config
.
vm
.
hostname
=
"devbox.devops.detss.corpintra.net"
# proxy configuration
# proxy configuration
...
@@ -38,6 +38,12 @@ Vagrant.configure("2") do |config|
...
@@ -38,6 +38,12 @@ Vagrant.configure("2") do |config|
vb
.
memory
=
"4096"
vb
.
memory
=
"4096"
vb
.
cpus
=
4
vb
.
cpus
=
4
vb
.
name
=
BOX_NAME
vb
.
name
=
BOX_NAME
# https://www.virtualbox.org/manual/ch08.html
vb
.
customize
[
"modifyvm"
,
:id
,
"--vram"
,
"128"
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--graphicscontroller"
,
"vboxvga"
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--accelerate3d"
,
"off"
]
# Adding a SATA controller that allows 4 hard drives
# Adding a SATA controller that allows 4 hard drives
unless
File
.
exist?
(
DISKS
[
0
][
"name"
]
+
".vmdk"
)
unless
File
.
exist?
(
DISKS
[
0
][
"name"
]
+
".vmdk"
)
vb
.
customize
[
'storagectl'
,
:id
,
'--name'
,
'SATA Controller'
,
'--add'
,
'sata'
,
'--portcount'
,
4
]
vb
.
customize
[
'storagectl'
,
:id
,
'--name'
,
'SATA Controller'
,
'--add'
,
'sata'
,
'--portcount'
,
4
]
...
...
playbook.yml
View file @
0952965f
...
@@ -3,8 +3,13 @@
...
@@ -3,8 +3,13 @@
hosts
:
devbox
hosts
:
devbox
vars
:
vars
:
jetbrains_installer_apps
:
jetbrains_installer_apps
:
-
name
:
"
Toolbox
App"
-
name
:
"
IntelliJ
IDEA
Ultimate"
-
name
:
"
IntelliJ
IDEA
Ultimate"
pre_tasks
:
-
name
:
"
Update
apt
cache"
apt
:
update_cache
:
yes
cache_valid_time
:
86400
# one day
roles
:
roles
:
-
{
role
:
"
geerlingguy.docker"
,
docker_users
:
[
"
vagrant"
],
tags
:
"
docker"
}
-
{
role
:
"
geerlingguy.docker"
,
docker_users
:
[
"
vagrant"
],
tags
:
"
docker"
}
-
{
role
:
'
jetbrains_installer'
,
tags
:
[
'
jetbrains'
]}
-
{
role
:
'
jetbrains_installer'
,
tags
:
[
'
jetbrains'
]}
-
{
role
:
'
webofmars.xfce4-desktop'
,
tags
:
[
'
desktop'
]}
requirements.yml
View file @
0952965f
-
src
:
"
geerlingguy.docker"
-
src
:
"
geerlingguy.docker"
-
name
:
"
jetbrains_installer"
-
name
:
"
jetbrains_installer"
src
:
"
git+https://github.com/reimarstier/ansible-role-jetbrains_installer.git"
src
:
"
git+https://github.com/reimarstier/ansible-role-jetbrains_installer.git"
-
src
:
"
webofmars.xfce4-desktop"
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