Daniel that did not work see below on the master under /etc/puppet/modules/websharedlibs/files I have the directory /ehrweb which has the directory and files below but on the client it just creates the parent directory and nothing else, client is ct-eng-web02-devint server. My code is
[root@ct-eng-pup manifests]# more init.pp
class websharedlibs {
file { "/opt/caretools/webapps/ehrweb":
ensure => "directory",
recurse => "true",
owner => "root",
group => "root",
mode => 755,
}
}
[root@ct-eng-pup manifests]#
[root@ct-eng-web02-devint webapps]# pwd
/opt/caretools/webapps
[root@ct-eng-web02-devint webapps]# ll ehrweb
total 0
[root@ct-eng-web02-devint webapps]#
[root@ct-eng-pup files]# pwd
/etc/puppet/modules/websharedlibs/files
[root@ct-eng-pup files]# ll
total 4
drwxr-xr-x. 13 root root 4096 Sep 11 14:26 ehrwe
drwxr-xr-x. 13 root root 4096 Sep 11 14:26 ehrweb
[root@ct-eng-pup files]# ll ehrweb
total 800
-rw-r--r--. 1 root root 947 Sep 11 14:26 404.html
-rw-r--r--. 1 root root 938 Sep 11 14:26 422.html
-rw-r--r--. 1 root root 948 Sep 11 14:26 500.html
drwxr-xr-x. 2 root root 4096 Sep 11 14:26 assets
-rw-r--r--. 1 root root 103 Sep 11 14:26 blank_iframe.html
-rw-r--r--. 1 root root 341157 Sep 11 14:26 ccd-schema.xsd
-rw-r--r--. 1 root root 18899 Sep 11 14:26 CCD.xsl
-rw-r--r--. 1 root root 65482 Sep 11 14:26 ccr-schema.xsd
-rw-r--r--. 1 root root 146074 Sep 11 14:26 CCR.xsl
drwxr-xr-x. 4 root root 4096 Sep 11 14:26 cdar2c32
drwxr-xr-x. 2 root root 4096 Sep 11 14:26 dev
Please help what am I missing?
On Tuesday, September 11, 2012 1:04:30 PM UTC-7, JGonza1 wrote: