| PUP-10896, excellent, thanks; just ignore the rest for now. Minimal test case: 6.21: $ puppet apply -e "user { 'aaa': gid => 100, forcelocal => true }" Notice: Compiled catalog for [] in environment production in 0.02 seconds Notice: /Stage[main]/Main/User[aaa]/gid: gid changed '100' to 100 Notice: Applied catalog in 0.73 seconds $ puppet apply -e "user { 'aaa': gid => '100', forcelocal => true }" Notice: Compiled catalog for [] in environment production in 0.02 seconds Notice: /Stage[main]/Main/User[aaa]/gid: gid changed '100' to 100 Notice: Applied catalog in 0.73 seconds $ puppet apply -e "user { 'aaa': gid => 'users', forcelocal => true }" Notice: Compiled catalog for [] in environment production in 0.02 seconds Notice: /Stage[main]/Main/User[aaa]/gid: gid changed '100' to 'users' Notice: Applied catalog in 0.73 seconds 6.20: $ puppet apply -e "user { 'aaa': gid => 100, forcelocal => true }" Notice: Compiled catalog for [] in environment production in 0.01 seconds Notice: Applied catalog in 0.33 seconds $ puppet apply -e "user { 'aaa': gid => '100', forcelocal => true }" Notice: Compiled catalog for [] in environment production in 0.01 seconds Notice: Applied catalog in 0.33 seconds $ puppet apply -e "user { 'aaa': gid => 'users', forcelocal => true }" Notice: Compiled catalog for [] in environment production in 0.01 seconds Notice: Applied catalog in 0.33 seconds |