feat(core): add private puppet module for the proprietary stuff
This commit is contained in:
parent
bb5eb593b3
commit
2fd4298510
2 changed files with 13 additions and 0 deletions
|
|
@ -18,3 +18,8 @@ mod 'puppetlabs-vcsrepo', '3.1.1'
|
||||||
# Archive module for downloading and unpacking archives
|
# Archive module for downloading and unpacking archives
|
||||||
#
|
#
|
||||||
mod 'puppet-archive', '4.6.0'
|
mod 'puppet-archive', '4.6.0'
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add the private puppet module for the proprietary bits
|
||||||
|
#
|
||||||
|
mod 'private', :git => 'git@gitlab.com:adeattwood/dotfiles-private.git'
|
||||||
|
|
|
||||||
|
|
@ -25,4 +25,12 @@ node default {
|
||||||
include core::vscode
|
include core::vscode
|
||||||
include core::emacs
|
include core::emacs
|
||||||
include core::terminal
|
include core::terminal
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add the private puppet module for all the proprietary bits only if the
|
||||||
|
# module is installed. You can see the puppet file
|
||||||
|
#
|
||||||
|
if defined('private::main') {
|
||||||
|
include private::main
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue