netripper

netripper

Feb 20th, 2010
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // Be root:
  2. // # sudo bash
  3. // # nano /etc/dbus-1/system.d/synce-hal.conf
  4. //
  5. // Give file these contents, save, reboot...
  6.  
  7. <!DOCTYPE busconfig PUBLIC
  8. "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
  9. "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
  10. <busconfig>
  11.  
  12. <!-- This configuration file specifies the required security policies
  13. for synce-hal to work. -->
  14.  
  15. <!-- Only root can own the hal-synce service -->
  16. <policy user="root">
  17. <allow own="org.freedesktop.Hal.Device.Synce"/>
  18. </policy>
  19.  
  20. <!-- Allow anyone to invoke methods on it. -->
  21. <policy context="default">
  22. <allow send_interface="org.freedesktop.Hal.Device.Synce"/>
  23. </policy>
  24.  
  25. </busconfig>
  26.  
Add Comment
Please, Sign In to add comment