Sha256: ffca91c4e04ae58ba41d36cb8922ae85114ab9a50a54b53c820921adba202569
Contents?: true
Size: 556 Bytes
Versions: 9
Compression:
Stored size: 556 Bytes
Contents
# Apt-install various things necessary for Ruby, guest additions, # etc., and remove optional things to trim down the machine. apt-get -y update apt-get -y upgrade apt-get -y install gcc build-essential linux-headers-$(uname -r) apt-get -y install zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev apt-get -y install vim curl apt-get -y install rsync apt-get clean # Set up sudo ( cat <<'EOP' %vagrant ALL=NOPASSWD:ALL EOP ) > /tmp/vagrant chmod 0440 /tmp/vagrant mv /tmp/vagrant /etc/sudoers.d/ # Install NFS client apt-get -y install nfs-common
Version data entries
9 entries across 9 versions & 1 rubygems