summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-29 03:14:39 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-29 03:14:39 -0400
commitfde74840d4537554cf6dcf5fc43a99d93d4998e6 (patch)
tree353ea32b12bbb1a7b5d97f660590c9bd3e8a8a05
parente56dcc0965f8f0870aabca536010cb94149fe982 (diff)
downloadpuppet-tozt-fde74840d4537554cf6dcf5fc43a99d93d4998e6.tar.gz
puppet-tozt-fde74840d4537554cf6dcf5fc43a99d93d4998e6.zip
Revert "create the appropriate .conf-type file"
This reverts commit e56dcc0965f8f0870aabca536010cb94149fe982.
-rw-r--r--tozt/conf/manifests/user.pp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tozt/conf/manifests/user.pp b/tozt/conf/manifests/user.pp
index e678050..b5af5b2 100644
--- a/tozt/conf/manifests/user.pp
+++ b/tozt/conf/manifests/user.pp
@@ -28,11 +28,6 @@ define conf::user($user=$name, $home=undef) {
];
}
- file { "$_home/conf/.conf-type":
- content => "server",
- require => Exec["git clone doy/conf for $user"];
- }
-
exec { "conf make install for $user":
command => "/usr/bin/make install",
user => $user,
@@ -43,7 +38,6 @@ define conf::user($user=$name, $home=undef) {
],
creates => "$_home/.vimrc",
require => [
- File["$_home/conf/.conf-type"],
Class['cron'],
Class['c_toolchain'],
User[$user],