~vorlon/ubuntu/natty/sudo/keep_home_by_default

« back to all changes in this revision

Viewing changes to def_data.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-05-11 18:07:03 UTC
  • mfrom: (1.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090511180703-vl2t8cem14g6r61c
Tags: 1.7.0-1ubuntu1
* Merge from debian unstable, remaining changes:
 - debian/rules: Disable lecture, enable tty_tickets by default. (Ubuntu
   specific)
 - Add debian/sudo_root.8: Explanation of root handling through sudo.
   Install it in debian/rules. (Ubuntu specific)
 - sudo.c: If the user successfully authenticated and he is in the 'admin'
   group, then create a stamp ~/.sudo_as_admin_successful. Our default bash
   profile checks for this and displays a short intro about sudo if the
   flag is not present. (Ubuntu specific)
 - env.c: Add "http_proxy" to initial_keepenv_table, so that it is kept
   for "sudo apt-get ...". (Ubuntu specific EBW hack, should disappear at
   some point)
 - debian/{rules,postinst,sudo-ldap.postinst}: Disable init script
   installation. Debian reintroduced it because /var/run tmpfs is not the
   default there, but has been on Ubuntu for ages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#       description (or NULL)
7
7
#       array of struct def_values if TYPE == T_TUPLE
8
8
#
 
9
# NOTE: for tuples that can be used in a boolean context the first
 
10
#       value corresponds to boolean FALSE and the second to TRUE.
 
11
#
9
12
 
10
13
syslog
11
14
        T_LOGFAC|T_BOOL
131
134
mailto
132
135
        T_STR|T_BOOL
133
136
        "Address to send mail to: %s"
 
137
mailfrom
 
138
        T_STR|T_BOOL
 
139
        "Address to send mail from: %s"
134
140
mailsub
135
141
        T_STR
136
142
        "Subject line for mail messages: %s"
155
161
runas_default
156
162
        T_STR
157
163
        "Default user to run commands as: %s"
158
 
        *set_runaspw
 
164
secure_path
 
165
        T_STR|T_BOOL
 
166
        "Value to override user's $PATH with: %s"
159
167
editor
160
168
        T_STR|T_PATH
161
169
        "Path to the editor for use by visudo: %s"
176
184
ignore_local_sudoers
177
185
        T_FLAG
178
186
        "If LDAP directory is up, do we ignore local sudoers file"
 
187
closefrom
 
188
        T_INT
 
189
        "File descriptors >= %d will be closed before executing a command"
 
190
closefrom_override
 
191
        T_FLAG
 
192
        "If set, users may override the value of `closefrom' with the -C option"
179
193
setenv
180
194
        T_FLAG
181
195
        "Allow users to set arbitrary environment variables"
197
211
type
198
212
        T_STR
199
213
        "SELinux type to use in the new security context: %s"
 
214
askpass
 
215
        T_STR|T_PATH|T_BOOL
 
216
        "Path to the askpass helper program: %s"
 
217
env_file
 
218
        T_STR|T_PATH|T_BOOL
 
219
        "Path to the sudo-specific environment file: %s"
 
220
sudoers_locale
 
221
        T_STR
 
222
        "Locale to use while parsing sudoers: %s"
 
223
visiblepw
 
224
        T_FLAG
 
225
        "Allow sudo to prompt for a password even if it would be visisble"