1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{ user {"dbbackup": ensure => present, home => "/home/dbbackup", } } inherits backup { User["dbbackup"] { groups +> "mysql" } } inherits backup { User["dbbackup"] { groups +> "pgsql" } } include backup include backup #puppet test.pp Parameter 'groups' is already set on User[dbbackup] by backup at /test:11; cannot redefine at /test:17 on node testmonkey |

