source: trunk/puppet/modules/puppet-openldap/templates/pam_mount.conf.xml.erb @ 573

Last change on this file since 573 was 573, checked in by sebas@…, 14 years ago

agrego un segundo punto de montage al pam-mount

File size: 1.3 KB
Line 
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
10                <!-- Volume definitions -->
11
12<volume fstype="<%= pammount_fstype %>" server="<%= pammount_server %>" path="<%= pammount_path %>" mountpoint="<%= pammount_mountpoint %>" />
13
14<% if has_variable?("pammount_fstype2") then %>
15<volume fstype="<%= pammount_fstype2 %>" server="<%= pammount_server2 %>" path="<%= pammount_path2 %>" mountpoint="<%= pammount_mountpoint2 %>" />
16<% end %>
17
18
19                <!-- pam_mount parameters: General tunables -->
20
21<debug enable="0" />
22<!--
23<luserconf name=".pam_mount.conf.xml" />
24-->
25
26<!-- Note that commenting out mntoptions will give you the defaults.
27     You will need to explicitly initialize it with the empty string
28     to reset the defaults to nothing. -->
29<mntoptions allow="nosuid,nodev,loop,encryption,fsck,nonempty,allow_root,allow_other" />
30<!--
31<mntoptions deny="suid,dev" />
32<mntoptions allow="*" />
33<mntoptions deny="*" />
34-->
35<mntoptions require="nosuid,nodev" />
36<path>/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin</path>
37
38<logout wait="0" hup="0" term="0" kill="0" />
39
40
41                <!-- pam_mount parameters: Volume-related -->
42
43<mkmountpoint enable="1" remove="true" />
44
45
46</pam_mount>
Note: See TracBrowser for help on using the repository browser.