Hello,

I am noticing a change in the logging when I upgraded puppet-3.0.2.x from 
puppet-2.7.x. It shows up the following non-convergent message in every 
single puppet run. It would be nice to understand what change in the puppet 
version is causing this messge. Thanks for any suggestion or pointers to 
correct syntax.

Log : 

/File[/mpt/dir]/seltype (notice): seltype changed 'var_t' to 'default_t'

/File[/srv/mpt/dir/shadow]/seltype (notice): seltype changed 'default_t' to 
'var_t'

The following are the file description and three mount points. There are a 
few other directories that are sub-dirs of "/srv/mpt/dir/"

file {

  '/srv/mpt/dir/shadow' :

      ensure => directory,

      owner => 'root',

      group => 'root',

      mode => '755';

  '/mpt/dir' :

      ensure => directory,

      owner => 'root',

      group => 'root',

      mode => '755';

}

mount {

    "mount_server_fs1" :

      device => "/dev/sdc1",

      name => "/srv/mpt/dir",

      fstype => "ext3",

      options => "defaults",

      dump => "0",

      ensure => mounted;

    "mount_server_fs2" :

      device => "/dev/sdb1",

      name => "/srv/mpt/dir/export-shadow",

      fstype => "ext3",

      options => "defaults",

      dump => "0",

      ensure => mounted;


    "mount_server_fs3" :

      device => "/srv/mpt/dir/shadow",

      name => "/mpt/dir",

      fstype => "bind",

      options => "defaults,bind",

      dump => "0",

      ensure => mounted;

  }

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/xnVtY1maIxAJ.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to