Article
article
Reads:
1364
Score:
If you have ever messed with the gconf editor, or upgraded firefox etc, you may need your policies reapplied. In the real world, this doesn't happen at UserLogin, even if it says it will.
The policy manager keeps its status files under /home/username. Using the find command we can reset all of the policies so next reboot they will apply:
# find /home -iname ".*completed" -exec rm '{}' \;
On next reboot, all of the policies will be reapplied.





0