Advertisement
Artim

pam_mount.conf.xml

Jan 14th, 2020
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!DOCTYPE pam_mount SYSTEM "pam_mount.conf.xml.dtd">
  3. <!--
  4.     See pam_mount.conf(5) for a description.
  5. -->
  6.  
  7. <pam_mount>
  8.  
  9.         <!-- debug should come before everything else,
  10.         since this file is still processed in a single pass
  11.         from top-to-bottom -->
  12.  
  13. <debug enable="0" />
  14.  
  15.         <!-- Volume definitions -->
  16. <volume path="/tmp/%(USER)-cache" mountpoint="/home/%(USER)/.cache" options="bind" />
  17.  
  18.         <!-- pam_mount parameters: General tunables -->
  19.  
  20. <!--
  21. <luserconf name=".pam_mount.conf.xml" />
  22. -->
  23.  
  24. <!-- Note that commenting out mntoptions will give you the defaults.
  25.     You will need to explicitly initialize it with the empty string
  26.     to reset the defaults to nothing. -->
  27. <mntoptions allow="nosuid,nodev,loop,encryption,fsck,nonempty,allow_root,allow_other" />
  28. <!--
  29. <mntoptions deny="suid,dev" />
  30. <mntoptions allow="*" />
  31. <mntoptions deny="*" />
  32. -->
  33. <mntoptions require="nosuid,nodev" />
  34.  
  35. <!-- requires ofl from hxtools to be present -->
  36. <logout wait="0" hup="no" term="no" kill="no" />
  37.  
  38.  
  39.         <!-- pam_mount parameters: Volume-related -->
  40.  
  41. <mkmountpoint enable="1" remove="true" />
  42.  
  43.  
  44. </pam_mount>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement