diff options
| author | James Turnbull <james@lovedthanlost.net> | 2010-03-31 12:39:54 +1100 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2010-04-01 12:04:03 +1100 |
| commit | d90ec7907aa785dfd592da3e0335ceaeb554b2d8 (patch) | |
| tree | 472c1d34e2195e0fe1268d268ad71f8d40a25716 /conf | |
| parent | ae0b0bf23e418e8c6665e9dc135148b78bdbd913 (diff) | |
Fixes #3460 - Makes Puppet FHS compliant by moving /var/puppet to /var/lib/puppet
Diffstat (limited to 'conf')
| -rw-r--r-- | conf/gentoo/puppet/puppet.conf | 4 | ||||
| -rw-r--r-- | conf/redhat/puppet.conf | 4 | ||||
| -rwxr-xr-x | conf/solaris/smf/svc-puppetd | 2 | ||||
| -rwxr-xr-x | conf/solaris/smf/svc-puppetmasterd | 2 | ||||
| -rw-r--r-- | conf/suse/puppet.spec | 2 |
5 files changed, 3 insertions, 11 deletions
diff --git a/conf/gentoo/puppet/puppet.conf b/conf/gentoo/puppet/puppet.conf index 70dcb02da..d35593f12 100644 --- a/conf/gentoo/puppet/puppet.conf +++ b/conf/gentoo/puppet/puppet.conf @@ -1,8 +1,4 @@ [main] - # Where Puppet stores dynamic and growing data. - # The default value is '/var/puppet'. - vardir = /var/lib/puppet - # The Puppet log directory. # The default value is '$vardir/log'. logdir = /var/log/puppet diff --git a/conf/redhat/puppet.conf b/conf/redhat/puppet.conf index 70dcb02da..d35593f12 100644 --- a/conf/redhat/puppet.conf +++ b/conf/redhat/puppet.conf @@ -1,8 +1,4 @@ [main] - # Where Puppet stores dynamic and growing data. - # The default value is '/var/puppet'. - vardir = /var/lib/puppet - # The Puppet log directory. # The default value is '$vardir/log'. logdir = /var/log/puppet diff --git a/conf/solaris/smf/svc-puppetd b/conf/solaris/smf/svc-puppetd index 251b044a5..9036b505c 100755 --- a/conf/solaris/smf/svc-puppetd +++ b/conf/solaris/smf/svc-puppetd @@ -12,7 +12,7 @@ exec_prefix=/opt/csw sysconfdir=/opt/csw/etc sbindir=/opt/csw/sbin -pidfile=/var/puppet/run/puppetd.pid +pidfile=/var/lib/puppet/run/puppetd.pid case "$1" in start) diff --git a/conf/solaris/smf/svc-puppetmasterd b/conf/solaris/smf/svc-puppetmasterd index 684344b38..34f5a62e6 100755 --- a/conf/solaris/smf/svc-puppetmasterd +++ b/conf/solaris/smf/svc-puppetmasterd @@ -8,7 +8,7 @@ exec_prefix=/opt/csw sysconfdir=/opt/csw/etc sbindir=/opt/csw/sbin -pidfile=/var/puppet/run/puppetmasterd.pid +pidfile=/var/lib/puppet/run/puppetmasterd.pid case "$1" in start) diff --git a/conf/suse/puppet.spec b/conf/suse/puppet.spec index 9d317f849..1d08f3df7 100644 --- a/conf/suse/puppet.spec +++ b/conf/suse/puppet.spec @@ -99,7 +99,7 @@ find %{buildroot}%{ruby_sitelibdir} -type f -perm +ugo+x -print0 | xargs -0 -r % %pre /usr/sbin/groupadd -r puppet 2>/dev/null || : /usr/sbin/useradd -g puppet -c "Puppet" \ - -s /sbin/nologin -r -d /var/puppet puppet 2> /dev/null || : + -s /sbin/nologin -r -d /var/lib/puppet puppet 2> /dev/null || : %post /sbin/chkconfig --add puppet |
