Rebuild rubocop TODOs after auto-correcting
This commit is contained in:
parent
31c50255e9
commit
84dbb52d11
580 changed files with 3689 additions and 3133 deletions
12
Vagrantfile
vendored
12
Vagrantfile
vendored
|
|
@ -1,3 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
|
|
@ -12,7 +14,7 @@ Vagrant.configure(2) do |config|
|
|||
|
||||
# Every Vagrant development environment requires a box. You can search for
|
||||
# boxes at https://atlas.hashicorp.com/search.
|
||||
config.vm.box = "opensuse/openSUSE-42.2-x86_64"
|
||||
config.vm.box = 'opensuse/openSUSE-42.2-x86_64'
|
||||
|
||||
# Disable automatic box update checking. If you disable this, then
|
||||
# boxes will only be checked for updates when the user runs
|
||||
|
|
@ -22,7 +24,7 @@ Vagrant.configure(2) do |config|
|
|||
# Create a forwarded port mapping which allows access to a specific port
|
||||
# within the machine from a port on the host machine. In the example below,
|
||||
# accessing "localhost:8080" will access port 80 on the guest machine.
|
||||
config.vm.network "forwarded_port", guest: 3000, host: 3000
|
||||
config.vm.network 'forwarded_port', guest: 3000, host: 3000
|
||||
|
||||
# Create a private network, which allows host-only access to the machine
|
||||
# using a specific IP.
|
||||
|
|
@ -47,8 +49,8 @@ Vagrant.configure(2) do |config|
|
|||
# mount without working about the group mismatch
|
||||
VAGRANT_UID = 1000 # User vagrant
|
||||
VAGRANT_GID = 100 # Group users
|
||||
config.vm.synced_folder ".", "/vagrant",
|
||||
owner: VAGRANT_UID, group: VAGRANT_GID
|
||||
config.vm.synced_folder '.', '/vagrant',
|
||||
owner: VAGRANT_UID, group: VAGRANT_GID
|
||||
|
||||
# Provider-specific configuration so you can fine-tune various
|
||||
# backing providers for Vagrant. These expose provider-specific options.
|
||||
|
|
@ -75,7 +77,7 @@ Vagrant.configure(2) do |config|
|
|||
# Enable provisioning with a shell script. Additional provisioners such as
|
||||
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
||||
# documentation for more information about their specific syntax and use.
|
||||
config.vm.provision :shell, path: "bootstrap.sh"
|
||||
config.vm.provision :shell, path: 'bootstrap.sh'
|
||||
# config.vm.provision "shell", inline: <<-SHELL
|
||||
# sudo apt-get update
|
||||
# sudo apt-get install -y apache2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue