mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-20 16:31:24 -05:00
20 lines
468 B
Ruby
20 lines
468 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module GuestDebian
|
|
module Cap
|
|
class SMB
|
|
def self.smb_install(machine)
|
|
comm = machine.communicate
|
|
if !comm.test("test -f /sbin/mount.cifs")
|
|
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
|
apt-get -yqq update
|
|
apt-get -yqq install cifs-utils
|
|
EOH
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|