Sha256: f1e1f95e07a556c20daacfe8b6263592993cf3f3cb501ee9cc118d93724e161e

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 KB

Contents

module Vagrant
  module LXC
    module Action
      class Boot
        def initialize(app, env)
          @app = app
        end

        def call(env)
          @env = env

          config = env[:machine].provider_config

          utsname = env[:machine].config.vm.hostname || env[:machine].id
          config.customize 'utsname', utsname

          # Fix apparmor issues when starting Ubuntu 14.04 containers
          # See https://github.com/fgrehm/vagrant-lxc/issues/278 for more information
          if Dir.exists?('/sys/fs/pstore')
            config.customize 'mount.entry', '/sys/fs/pstore sys/fs/pstore none bind,optional 0 0'
          end

          # Make selinux read-only, see
          # https://github.com/fgrehm/vagrant-lxc/issues/301
          if Dir.exists?('/sys/fs/selinux')
            config.customize 'mount.entry', '/sys/fs/selinux sys/fs/selinux none bind,ro 0 0'
          end

          # Make /tmp a tmpfs to prevent init scripts from nuking synced folders mounted in here
          config.customize 'mount.entry', 'tmpfs tmp tmpfs nodev,nosuid,size=2G 0 0'

          env[:ui].info I18n.t("vagrant_lxc.messages.starting")
          env[:machine].provider.driver.start(config.customizations)

          @app.call env
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vagrant-lxc-1.2.4 lib/vagrant-lxc/action/boot.rb
vagrant-lxc-1.2.3 lib/vagrant-lxc/action/boot.rb
vagrant-lxc-1.2.2 lib/vagrant-lxc/action/boot.rb
vagrant-lxc-1.2.1 lib/vagrant-lxc/action/boot.rb
vagrant-lxc-1.2.0 lib/vagrant-lxc/action/boot.rb