| OLD | NEW |
| 1 # This is a list of regular expressions such that every file system | 1 # This is a list of regular expressions such that every file system |
| 2 # entry on the stateful partition must have a full path that exactly | 2 # entry on the stateful partition must have a full path that exactly |
| 3 # matches at least one. That includes directories, regular files, and | 3 # matches at least one. That includes directories, regular files, and |
| 4 # special files. | 4 # special files. |
| 5 | 5 |
| 6 # Please make every regular expression as specific as possible | 6 # Please make every regular expression as specific as possible |
| 7 # to enable everyone to know when new file is being stored on | 7 # to enable everyone to know when new file is being stored on |
| 8 # the stateful partition. Every file system entry on the stateful | 8 # the stateful partition. Every file system entry on the stateful |
| 9 # partition is a liability that can result in a Chromium-OS device | 9 # partition is a liability that can result in a Chromium-OS device |
| 10 # not being able to be logged into. Please do your part in | 10 # not being able to be logged into. Please do your part in |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 /home/\.shadow/skel/\.bashrc | 34 /home/\.shadow/skel/\.bashrc |
| 35 /home/\.shadow/skel/logs | 35 /home/\.shadow/skel/logs |
| 36 /home/\.shadow/skel/\.bash_logout | 36 /home/\.shadow/skel/\.bash_logout |
| 37 /home/\.shadow/skel/\.bash_profile | 37 /home/\.shadow/skel/\.bash_profile |
| 38 /home/\.shadow/salt | 38 /home/\.shadow/salt |
| 39 /home/\.shadow/[a-z0-9]+ | 39 /home/\.shadow/[a-z0-9]+ |
| 40 /home/\.shadow/[a-z0-9]+/master\.0\.salt | 40 /home/\.shadow/[a-z0-9]+/master\.0\.salt |
| 41 /home/\.shadow/[a-z0-9]+/master\.0 | 41 /home/\.shadow/[a-z0-9]+/master\.0 |
| 42 /home/\.shadow/[a-z0-9]+/vault | 42 /home/\.shadow/[a-z0-9]+/vault |
| 43 /home/\.shadow/[a-z0-9]+/vault/.* | 43 /home/\.shadow/[a-z0-9]+/vault/.* |
| 44 # Autotest is running right now, so allow anything in there. | |
| 45 /home/autotest | |
| 46 /home/autotest/.* | |
| 47 /home/chronos | 44 /home/chronos |
| 48 /home/chronos/\.Google | 45 /home/chronos/\.Google |
| 49 /home/chronos/\.Google/Google Talk Plugin | 46 /home/chronos/\.Google/Google Talk Plugin |
| 50 /home/chronos/\.Google/Google Talk Plugin/options | 47 /home/chronos/\.Google/Google Talk Plugin/options |
| 51 /home/chronos/\.Xauthority | 48 /home/chronos/\.Xauthority |
| 52 /home/chronos/\.adobe | 49 /home/chronos/\.adobe |
| 53 /home/chronos/\.adobe/Flash_Player | 50 /home/chronos/\.adobe/Flash_Player |
| 54 /home/chronos/\.adobe/Flash_Player/AssetCache | 51 /home/chronos/\.adobe/Flash_Player/AssetCache |
| 55 /home/chronos/\.adobe/Flash_Player/AssetCache/.* | 52 /home/chronos/\.adobe/Flash_Player/AssetCache/.* |
| 56 # bash history should only exist for development users | 53 # bash history should only exist for development users |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 /var/spool | 246 /var/spool |
| 250 /var/spool/mail | 247 /var/spool/mail |
| 251 # Crash dumps involving processes run as other than "chronos" user. | 248 # Crash dumps involving processes run as other than "chronos" user. |
| 252 /var/spool/crash | 249 /var/spool/crash |
| 253 /var/spool/crash/.*\.(core|dmp) | 250 /var/spool/crash/.*\.(core|dmp) |
| 254 /var/spool/cron | 251 /var/spool/cron |
| 255 /var/spool/cron/crontabs | 252 /var/spool/cron/crontabs |
| 256 /var/spool/cron/lastrun | 253 /var/spool/cron/lastrun |
| 257 /var/spool/cron/lastrun/cron.(daily|hourly|monthly|weekly) | 254 /var/spool/cron/lastrun/cron.(daily|hourly|monthly|weekly) |
| 258 /var/tmp | 255 /var/tmp |
| OLD | NEW |