2020-09-20 05:22:17 +00:00
|
|
|
# Disable filebucket by default for all File resources:
|
|
|
|
|
# https://github.com/puppetlabs/docs-archive/blob/master/pe/2015.3/release_notes.markdown#filebucket-resource-no-longer-created-by-default
|
|
|
|
|
File { backup => false }
|
|
|
|
|
|
|
|
|
|
node default {
|
|
|
|
|
#
|
|
|
|
|
# Find the username
|
|
|
|
|
#
|
|
|
|
|
# This can be set in the hira data so you can still do things as your user
|
|
|
|
|
# when running puppet as root
|
|
|
|
|
#
|
|
|
|
|
$user = lookup('user', String, 'first', $id)
|
|
|
|
|
notify { "Running as ${id} for ${user} with home of ${user_home}": }
|
|
|
|
|
|
|
|
|
|
#
|
2020-09-20 11:19:23 +00:00
|
|
|
# Install docker and docker-compose
|
2020-09-20 05:22:17 +00:00
|
|
|
#
|
2020-09-20 11:19:23 +00:00
|
|
|
class { 'docker': version => 'latest' }
|
2022-07-07 18:35:46 +00:00
|
|
|
class { 'docker::compose': ensure => present, version => '1.29.2' }
|
2020-09-20 05:22:17 +00:00
|
|
|
|
2020-09-20 11:19:23 +00:00
|
|
|
#
|
|
|
|
|
# Neovim PPA to get a better version
|
|
|
|
|
#
|
2022-07-07 18:46:00 +00:00
|
|
|
apt::ppa { 'ppa:neovim-ppa/unstable': }
|
2020-09-20 11:19:23 +00:00
|
|
|
|
2020-09-20 20:13:11 +00:00
|
|
|
|
2020-09-20 11:19:23 +00:00
|
|
|
#
|
|
|
|
|
# Install all the packages that the workstation needs to run
|
|
|
|
|
#
|
|
|
|
|
include core::packages
|
2020-09-20 05:22:17 +00:00
|
|
|
}
|