| Path: | lib/puppet-lint/plugins/check_resources.rb |
| Last Update: | Tue Mar 01 05:53:16 +0000 2016 |
Public: Check the manifest tokens for any resource titles / namevars that are not quoted and record a warning for each instance found.
| TOKEN_TYPES | = | Set[:NAME, :NUMBER] |
| MSG | = | 'mode should be represented as a 4 digit octal value or symbolic mode' |
| SYM_RE | = | "([ugoa]*[-=+][-=+rstwxXugo]*)(,[ugoa]*[-=+][-=+rstwxXugo]*)*" |
| IGNORE_TYPES | = | Set[:VARIABLE, :UNDEF] |
| MODE_RE | = | Regexp.new(/\A([0-7]{4}|#{SYM_RE})\Z/) |