This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_cups.aug is in augeas-lenses 1.4.0-0ubuntu1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
(*
Module: Test_Cups
  Provides unit tests and examples for the <Cups> lens.
*)

module Test_Cups =

(* Variable: conf *)
let conf = "# Sample configuration file for the CUPS scheduler.
LogLevel warn

# Deactivate CUPS' internal logrotating, as we provide a better one, especially
# LogLevel debug2 gets usable now
MaxLogSize 0

# Administrator user group...
SystemGroup lpadmin


# Only listen for connections from the local machine.
Listen localhost:631
Listen /var/run/cups/cups.sock

# Show shared printers on the local network.
BrowseOrder allow,deny
BrowseAllow all
BrowseLocalProtocols CUPS dnssd
BrowseAddress @LOCAL

# Default authentication type, when authentication is required...
DefaultAuthType Basic

# Web interface setting...
WebInterface Yes

# Restrict access to the server...
<Location />
  Order allow,deny
</Location>

# Restrict access to the admin pages...
<Location /admin>
  Order allow,deny
</Location>

# Restrict access to configuration files...
<Location /admin/conf>
  AuthType Default
  Require user @SYSTEM
  Order allow,deny
</Location>

# Set the default printer/job policies...
<Policy default>
  # Job/subscription privacy...
  JobPrivateAccess default
  JobPrivateValues default
  SubscriptionPrivateAccess default
  SubscriptionPrivateValues default

  # Job-related operations must be done by the owner or an administrator...
  <Limit Create-Job Print-Job Print-URI Validate-Job>
    Order deny,allow
  </Limit>

  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  # All administration operations require an administrator to authenticate...
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # All printer operations require a printer operator to authenticate...
  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # Only the owner or an administrator can cancel or authenticate a job...
  <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  <Limit All>
    Order deny,allow
  </Limit>
</Policy>

# Set the authenticated printer/job policies...
<Policy authenticated>
  # Job/subscription privacy...
  JobPrivateAccess default
  JobPrivateValues default
  SubscriptionPrivateAccess default
  SubscriptionPrivateValues default

  # Job-related operations must be done by the owner or an administrator...
  <Limit Create-Job Print-Job Print-URI Validate-Job>
    AuthType Default
    Order deny,allow
  </Limit>

  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  # All administration operations require an administrator to authenticate...
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # All printer operations require a printer operator to authenticate...
  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # Only the owner or an administrator can cancel or authenticate a job...
  <Limit Cancel-Job CUPS-Authenticate-Job>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  <Limit All>
    Order deny,allow
  </Limit>
</Policy>
"

(* Test: Simplevars.lns *)
test Cups.lns get conf =
  { "#comment" = "Sample configuration file for the CUPS scheduler." }
  { "directive" = "LogLevel"
    { "arg" = "warn" }
  }
  {  }
  { "#comment" = "Deactivate CUPS' internal logrotating, as we provide a better one, especially" }
  { "#comment" = "LogLevel debug2 gets usable now" }
  { "directive" = "MaxLogSize"
    { "arg" = "0" }
  }
  {  }
  { "#comment" = "Administrator user group..." }
  { "directive" = "SystemGroup"
    { "arg" = "lpadmin" }
  }
  {  }
  {  }
  { "#comment" = "Only listen for connections from the local machine." }
  { "directive" = "Listen"
    { "arg" = "localhost:631" }
  }
  { "directive" = "Listen"
    { "arg" = "/var/run/cups/cups.sock" }
  }
  {  }
  { "#comment" = "Show shared printers on the local network." }
  { "directive" = "BrowseOrder"
    { "arg" = "allow,deny" }
  }
  { "directive" = "BrowseAllow"
    { "arg" = "all" }
  }
  { "directive" = "BrowseLocalProtocols"
    { "arg" = "CUPS" }
    { "arg" = "dnssd" }
  }
  { "directive" = "BrowseAddress"
    { "arg" = "@LOCAL" }
  }
  {  }
  { "#comment" = "Default authentication type, when authentication is required..." }
  { "directive" = "DefaultAuthType"
    { "arg" = "Basic" }
  }
  {  }
  { "#comment" = "Web interface setting..." }
  { "directive" = "WebInterface"
    { "arg" = "Yes" }
  }
  {  }
  { "#comment" = "Restrict access to the server..." }
  { "Location"
    { "arg" = "/" }
    { "directive" = "Order"
      { "arg" = "allow,deny" }
    }
  }
  {  }
  { "#comment" = "Restrict access to the admin pages..." }
  { "Location"
    { "arg" = "/admin" }
    { "directive" = "Order"
      { "arg" = "allow,deny" }
    }
  }
  {  }
  { "#comment" = "Restrict access to configuration files..." }
  { "Location"
    { "arg" = "/admin/conf" }
    { "directive" = "AuthType"
      { "arg" = "Default" }
    }
    { "directive" = "Require"
      { "arg" = "user" }
      { "arg" = "@SYSTEM" }
    }
    { "directive" = "Order"
      { "arg" = "allow,deny" }
    }
  }
  {  }
  { "#comment" = "Set the default printer/job policies..." }
  { "Policy"
    { "arg" = "default" }
    { "#comment" = "Job/subscription privacy..." }
    { "directive" = "JobPrivateAccess"
      { "arg" = "default" }
    }
    { "directive" = "JobPrivateValues"
      { "arg" = "default" }
    }
    { "directive" = "SubscriptionPrivateAccess"
      { "arg" = "default" }
    }
    { "directive" = "SubscriptionPrivateValues"
      { "arg" = "default" }
    }
    {  }
    { "#comment" = "Job-related operations must be done by the owner or an administrator..." }
    { "Limit"
      { "arg" = "Create-Job" }
      { "arg" = "Print-Job" }
      { "arg" = "Print-URI" }
      { "arg" = "Validate-Job" }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "Limit"
      { "arg" = "Send-Document" }
      { "arg" = "Send-URI" }
      { "arg" = "Hold-Job" }
      { "arg" = "Release-Job" }
      { "arg" = "Restart-Job" }
      { "arg" = "Purge-Jobs" }
      { "arg" = "Set-Job-Attributes" }
      { "arg" = "Create-Job-Subscription" }
      { "arg" = "Renew-Subscription" }
      { "arg" = "Cancel-Subscription" }
      { "arg" = "Get-Notifications" }
      { "arg" = "Reprocess-Job" }
      { "arg" = "Cancel-Current-Job" }
      { "arg" = "Suspend-Current-Job" }
      { "arg" = "Resume-Job" }
      { "arg" = "Cancel-My-Jobs" }
      { "arg" = "Close-Job" }
      { "arg" = "CUPS-Move-Job" }
      { "arg" = "CUPS-Get-Document" }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@OWNER" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "#comment" = "All administration operations require an administrator to authenticate..." }
    { "Limit"
      { "arg" = "CUPS-Add-Modify-Printer" }
      { "arg" = "CUPS-Delete-Printer" }
      { "arg" = "CUPS-Add-Modify-Class" }
      { "arg" = "CUPS-Delete-Class" }
      { "arg" = "CUPS-Set-Default" }
      { "arg" = "CUPS-Get-Devices" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "#comment" = "All printer operations require a printer operator to authenticate..." }
    { "Limit"
      { "arg" = "Pause-Printer" }
      { "arg" = "Resume-Printer" }
      { "arg" = "Enable-Printer" }
      { "arg" = "Disable-Printer" }
      { "arg" = "Pause-Printer-After-Current-Job" }
      { "arg" = "Hold-New-Jobs" }
      { "arg" = "Release-Held-New-Jobs" }
      { "arg" = "Deactivate-Printer" }
      { "arg" = "Activate-Printer" }
      { "arg" = "Restart-Printer" }
      { "arg" = "Shutdown-Printer" }
      { "arg" = "Startup-Printer" }
      { "arg" = "Promote-Job" }
      { "arg" = "Schedule-Job-After" }
      { "arg" = "Cancel-Jobs" }
      { "arg" = "CUPS-Accept-Jobs" }
      { "arg" = "CUPS-Reject-Jobs" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "#comment" = "Only the owner or an administrator can cancel or authenticate a job..." }
    { "Limit"
      { "arg" = "Cancel-Job" }
      { "arg" = "CUPS-Authenticate-Job" }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@OWNER" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "Limit"
      { "arg" = "All" }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
  }
  {  }
  { "#comment" = "Set the authenticated printer/job policies..." }
  { "Policy"
    { "arg" = "authenticated" }
    { "#comment" = "Job/subscription privacy..." }
    { "directive" = "JobPrivateAccess"
      { "arg" = "default" }
    }
    { "directive" = "JobPrivateValues"
      { "arg" = "default" }
    }
    { "directive" = "SubscriptionPrivateAccess"
      { "arg" = "default" }
    }
    { "directive" = "SubscriptionPrivateValues"
      { "arg" = "default" }
    }
    {  }
    { "#comment" = "Job-related operations must be done by the owner or an administrator..." }
    { "Limit"
      { "arg" = "Create-Job" }
      { "arg" = "Print-Job" }
      { "arg" = "Print-URI" }
      { "arg" = "Validate-Job" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "Limit"
      { "arg" = "Send-Document" }
      { "arg" = "Send-URI" }
      { "arg" = "Hold-Job" }
      { "arg" = "Release-Job" }
      { "arg" = "Restart-Job" }
      { "arg" = "Purge-Jobs" }
      { "arg" = "Set-Job-Attributes" }
      { "arg" = "Create-Job-Subscription" }
      { "arg" = "Renew-Subscription" }
      { "arg" = "Cancel-Subscription" }
      { "arg" = "Get-Notifications" }
      { "arg" = "Reprocess-Job" }
      { "arg" = "Cancel-Current-Job" }
      { "arg" = "Suspend-Current-Job" }
      { "arg" = "Resume-Job" }
      { "arg" = "Cancel-My-Jobs" }
      { "arg" = "Close-Job" }
      { "arg" = "CUPS-Move-Job" }
      { "arg" = "CUPS-Get-Document" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@OWNER" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "#comment" = "All administration operations require an administrator to authenticate..." }
    { "Limit"
      { "arg" = "CUPS-Add-Modify-Printer" }
      { "arg" = "CUPS-Delete-Printer" }
      { "arg" = "CUPS-Add-Modify-Class" }
      { "arg" = "CUPS-Delete-Class" }
      { "arg" = "CUPS-Set-Default" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "#comment" = "All printer operations require a printer operator to authenticate..." }
    { "Limit"
      { "arg" = "Pause-Printer" }
      { "arg" = "Resume-Printer" }
      { "arg" = "Enable-Printer" }
      { "arg" = "Disable-Printer" }
      { "arg" = "Pause-Printer-After-Current-Job" }
      { "arg" = "Hold-New-Jobs" }
      { "arg" = "Release-Held-New-Jobs" }
      { "arg" = "Deactivate-Printer" }
      { "arg" = "Activate-Printer" }
      { "arg" = "Restart-Printer" }
      { "arg" = "Shutdown-Printer" }
      { "arg" = "Startup-Printer" }
      { "arg" = "Promote-Job" }
      { "arg" = "Schedule-Job-After" }
      { "arg" = "Cancel-Jobs" }
      { "arg" = "CUPS-Accept-Jobs" }
      { "arg" = "CUPS-Reject-Jobs" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "#comment" = "Only the owner or an administrator can cancel or authenticate a job..." }
    { "Limit"
      { "arg" = "Cancel-Job" }
      { "arg" = "CUPS-Authenticate-Job" }
      { "directive" = "AuthType"
        { "arg" = "Default" }
      }
      { "directive" = "Require"
        { "arg" = "user" }
        { "arg" = "@OWNER" }
        { "arg" = "@SYSTEM" }
      }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
    {  }
    { "Limit"
      { "arg" = "All" }
      { "directive" = "Order"
        { "arg" = "deny,allow" }
      }
    }
  }