~vorlon/ubuntu/raring/upstart/lp.1199778

« back to all changes in this revision

Viewing changes to po/upstart.pot

* dbus/com.ubuntu.Upstart.xml:
  - added 'NotifyDiskWriteable' method.
* init/control.c:
  - control_notify_disk_writeable(): New function to flush early job log.
* init/job_process.c:
  - job_process_terminated(): Call log_handle_unflushed() to potentially
    add log object to unflushed list (the early job log) in certain
    scenarios.
* init/log.c:
  - log_flushed: bool indicating successful flush of early job log.
  - log_unflushed_files: The "early job log" list.
  - log_new(): Call log_unflushed_init() and initialize new log members.
  - log_flush(): Only call log_read_watch() conditionally now.
  - log_io_reader(): More careful consideration of errno by
    using saved value from log member.
  - log_io_error_handler(): Set remote_closed for the benefit of
    log_flushed() (to avoid flushing multiple times).
  - log_file_open: Now saves errno value from open(2).
  - log_read_watch(): Removed log->unflushed->len assert since it was
    erroneous: even if unflushed data exists, it will be written in
    order when log_io_reader() calls log_file_write().
  - log_unflushed_init(): New function to initialise the
    log_unflushed_files list.
  - log_handle_unflushed(): New function that potentially adds log
    object to the log_unflushed_files list to allow the data to be
    flushed _after_ the parent object has been destroyed.
  - log_clear_unflushed(): New function to clear the
    log_unflushed_files list by attempting to flush the data to disk.
* init/log.h:
  - Added new Log members: detached, remote_closed and open_errno.
  - Updated documentation.
  - extern for log_unflushed_files.
  - Added prototypes for new functions: log_handle_unflushed(),
    log_clear_unflushed() and log_unflushed_init().
* init/tests/test_job_process.c:
  - test_run():
    - Call log_unflushed_init().
    - Corrected grammar in error messages for "ensure sane fds" tests.
    - "with single line command writing fast and exiting": Call
      nih_child_add_watch().
    - added waitid() calls to ensure log data not added to
      unflushed list.
  - test_spawn():
    - Call log_unflushed_init().
    - Corrected grammar in error messages for "ensure sane fds" tests.
    - Added TEST_ALLOC_SAFE() to "simple test" to ensure
      destructors run correctly.
    - "read single null byte with 'console log'": Call
      log_handle_unflushed() and added missing free.
    - "read data from forked process": Call
      log_handle_unflushed().
* init/tests/test_log.c: 
  - Updated documentation.
  - Added calls to log_unflushed_init().
  - "ensure logger flushes cached data on request": New test
    for log_handle_unflushed().
* util/initctl.c:
  - notify_disk_writeable_action(): New function to notify
    Upstart that the disk is writeable.
  - commands: Added new command "notify-disk-writeable".
* util/man/initctl.8: Updated for new notify-disk-writeable command.
* util/tests/test_initctl.c:
  - STOP_UPSTART(): Check return from kill(2).
  - test_show_config(): Adding missing rmdir(2).
  - test_check_config(): Adding missing rmdir(2).
  - test_notify_disk_writeable(): New function embodying new test
    "with job ending before log disk writeable".

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
msgstr ""
9
9
"Project-Id-Version: upstart 1.5\n"
10
10
"Report-Msgid-Bugs-To: new@bugs.launchpad.net\n"
11
 
"POT-Creation-Date: 2012-03-01 11:24+0000\n"
 
11
"POT-Creation-Date: 2012-03-16 20:58+0000\n"
12
12
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
"Language-Team: LANGUAGE <LL@li.org>\n"
85
85
msgid "The log priority given was not recognised"
86
86
msgstr ""
87
87
 
 
88
#: init/control.c:792
 
89
msgid "You do not have permission to notify disk is writeable"
 
90
msgstr ""
 
91
 
88
92
#: init/errors.h:60
89
93
msgid "Illegal parameter"
90
94
msgstr ""
171
175
msgid "Event failed"
172
176
msgstr ""
173
177
 
174
 
#: init/job.c:235
 
178
#: init/job.c:246
175
179
#, c-format
176
180
msgid "%s goal changed from %s to %s"
177
181
msgstr ""
178
182
 
179
 
#: init/job.c:306
 
183
#: init/job.c:317
180
184
#, c-format
181
185
msgid "%s state changed from %s to %s"
182
186
msgstr ""
183
187
 
184
 
#: init/job.c:725 init/job.c:763
 
188
#: init/job.c:736 init/job.c:774
185
189
msgid "Job failed to start"
186
190
msgstr ""
187
191
 
188
 
#: init/job.c:738 init/job.c:774
 
192
#: init/job.c:749 init/job.c:785
189
193
msgid "Job failed while stopping"
190
194
msgstr ""
191
195
 
192
 
#: init/job.c:750 init/job.c:785
 
196
#: init/job.c:761 init/job.c:796
193
197
msgid "Job failed to restart"
194
198
msgstr ""
195
199
 
196
 
#: init/job.c:979
 
200
#: init/job.c:990
197
201
msgid "stop"
198
202
msgstr ""
199
203
 
200
 
#: init/job.c:981
 
204
#: init/job.c:992
201
205
msgid "start"
202
206
msgstr ""
203
207
 
204
 
#: init/job.c:983
 
208
#: init/job.c:994
205
209
msgid "respawn"
206
210
msgstr ""
207
211
 
208
 
#: init/job.c:1028
 
212
#: init/job.c:1039
209
213
msgid "waiting"
210
214
msgstr ""
211
215
 
212
 
#: init/job.c:1030
 
216
#: init/job.c:1041
213
217
msgid "starting"
214
218
msgstr ""
215
219
 
216
 
#: init/job.c:1032 init/process.c:80
 
220
#: init/job.c:1043 init/process.c:80
217
221
msgid "pre-start"
218
222
msgstr ""
219
223
 
220
 
#: init/job.c:1034
 
224
#: init/job.c:1045
221
225
msgid "spawned"
222
226
msgstr ""
223
227
 
224
 
#: init/job.c:1036 init/process.c:82
 
228
#: init/job.c:1047 init/process.c:82
225
229
msgid "post-start"
226
230
msgstr ""
227
231
 
228
 
#: init/job.c:1038
 
232
#: init/job.c:1049
229
233
msgid "running"
230
234
msgstr ""
231
235
 
232
 
#: init/job.c:1040 init/process.c:84
 
236
#: init/job.c:1051 init/process.c:84
233
237
msgid "pre-stop"
234
238
msgstr ""
235
239
 
236
 
#: init/job.c:1042
 
240
#: init/job.c:1053
237
241
msgid "stopping"
238
242
msgstr ""
239
243
 
240
 
#: init/job.c:1044
 
244
#: init/job.c:1055
241
245
msgid "killed"
242
246
msgstr ""
243
247
 
244
 
#: init/job.c:1046 init/process.c:86
 
248
#: init/job.c:1057 init/process.c:86
245
249
msgid "post-stop"
246
250
msgstr ""
247
251
 
248
 
#: init/job.c:1129 init/job.c:1204 init/job.c:1280 init/job_class.c:754
 
252
#: init/job.c:1140 init/job.c:1215 init/job.c:1291 init/job_class.c:754
249
253
#: init/job_class.c:894 init/job_class.c:1029
250
254
#, c-format
251
255
msgid "You do not have permission to modify job: %s"
252
256
msgstr ""
253
257
 
254
 
#: init/job.c:1137 init/job_class.c:818
 
258
#: init/job.c:1148 init/job_class.c:818
255
259
#, c-format
256
260
msgid "Job is already running: %s"
257
261
msgstr ""
258
262
 
259
 
#: init/job.c:1212 init/job.c:1288 init/job_class.c:948 init/job_class.c:1082
 
263
#: init/job.c:1223 init/job.c:1299 init/job_class.c:948 init/job_class.c:1082
260
264
#, c-format
261
265
msgid "Job has already been stopped: %s"
262
266
msgstr ""
263
267
 
264
 
#: init/job_class.c:581 init/job_class.c:791 util/initctl.c:1383
 
268
#: init/job_class.c:582 init/job_class.c:792 util/initctl.c:1383
265
269
msgid "Usage"
266
270
msgstr ""
267
271
 
285
289
msgid "%s %s process (%d)"
286
290
msgstr ""
287
291
 
288
 
#: init/job_process.c:461
289
 
msgid "No available ptys"
 
292
#: init/job_process.c:469
 
293
msgid "Failed to create pty - disabling logging for job"
290
294
msgstr ""
291
295
 
292
 
#: init/job_process.c:503
 
296
#: init/job_process.c:516
293
297
#, c-format
294
298
msgid "Pausing %s (%d) [pre-exec] for debug"
295
299
msgstr ""
296
300
 
297
 
#: init/job_process.c:705
 
301
#: init/job_process.c:718
298
302
#, c-format
299
303
msgid "Failed to open system console: %s"
300
304
msgstr ""
301
305
 
302
 
#: init/job_process.c:1013
 
306
#: init/job_process.c:1026
303
307
#, c-format
304
308
msgid "unable to move script fd: %s"
305
309
msgstr ""
306
310
 
307
 
#: init/job_process.c:1018
 
311
#: init/job_process.c:1031
308
312
#, c-format
309
313
msgid "unable to open console: %s"
310
314
msgstr ""
311
315
 
312
 
#: init/job_process.c:1073
 
316
#: init/job_process.c:1086
313
317
#, c-format
314
318
msgid "unable to set \"%s\" resource limit: %s"
315
319
msgstr ""
316
320
 
317
 
#: init/job_process.c:1078
 
321
#: init/job_process.c:1091
318
322
#, c-format
319
323
msgid "unable to set priority: %s"
320
324
msgstr ""
321
325
 
322
 
#: init/job_process.c:1083
 
326
#: init/job_process.c:1096
323
327
#, c-format
324
328
msgid "unable to set oom adjustment: %s"
325
329
msgstr ""
326
330
 
327
 
#: init/job_process.c:1088
 
331
#: init/job_process.c:1101
328
332
#, c-format
329
333
msgid "unable to change root directory: %s"
330
334
msgstr ""
331
335
 
332
 
#: init/job_process.c:1093
 
336
#: init/job_process.c:1106
333
337
#, c-format
334
338
msgid "unable to change working directory: %s"
335
339
msgstr ""
336
340
 
337
 
#: init/job_process.c:1098
 
341
#: init/job_process.c:1111
338
342
#, c-format
339
343
msgid "unable to set trace: %s"
340
344
msgstr ""
341
345
 
342
 
#: init/job_process.c:1103
 
346
#: init/job_process.c:1116
343
347
#, c-format
344
348
msgid "unable to execute: %s"
345
349
msgstr ""
346
350
 
347
 
#: init/job_process.c:1108
 
351
#: init/job_process.c:1121
348
352
#, c-format
349
353
msgid "unable to getpwnam: %s"
350
354
msgstr ""
351
355
 
352
 
#: init/job_process.c:1113
 
356
#: init/job_process.c:1126
353
357
#, c-format
354
358
msgid "unable to getgrnam: %s"
355
359
msgstr ""
356
360
 
357
 
#: init/job_process.c:1118
 
361
#: init/job_process.c:1131
358
362
msgid "unable to find setuid user"
359
363
msgstr ""
360
364
 
361
 
#: init/job_process.c:1122
 
365
#: init/job_process.c:1135
362
366
msgid "unable to find setgid group"
363
367
msgstr ""
364
368
 
365
 
#: init/job_process.c:1126
 
369
#: init/job_process.c:1139
366
370
#, c-format
367
371
msgid "unable to setuid: %s"
368
372
msgstr ""
369
373
 
370
 
#: init/job_process.c:1131
 
374
#: init/job_process.c:1144
371
375
#, c-format
372
376
msgid "unable to setgid: %s"
373
377
msgstr ""
374
378
 
375
 
#: init/job_process.c:1136
 
379
#: init/job_process.c:1149
376
380
#, c-format
377
381
msgid "unable to chown: %s"
378
382
msgstr ""
379
383
 
380
 
#: init/job_process.c:1141
 
384
#: init/job_process.c:1154
381
385
#, c-format
382
386
msgid "unable to open pt master: %s"
383
387
msgstr ""
384
388
 
385
 
#: init/job_process.c:1146
 
389
#: init/job_process.c:1159
386
390
#, c-format
387
391
msgid "unable to unlockpt: %s"
388
392
msgstr ""
389
393
 
390
 
#: init/job_process.c:1151
 
394
#: init/job_process.c:1164
391
395
#, c-format
392
396
msgid "unable to get ptsname: %s"
393
397
msgstr ""
394
398
 
395
 
#: init/job_process.c:1156
 
399
#: init/job_process.c:1169
396
400
#, c-format
397
401
msgid "unable to open pt slave: %s"
398
402
msgstr ""
399
403
 
400
 
#: init/job_process.c:1187 init/job_process.c:1237
 
404
#: init/job_process.c:1200 init/job_process.c:1250
401
405
#, c-format
402
406
msgid "Sending %s signal to %s %s process (%d)"
403
407
msgstr ""
404
408
 
405
 
#: init/job_process.c:1196 init/job_process.c:1246
 
409
#: init/job_process.c:1209 init/job_process.c:1259
406
410
#, c-format
407
411
msgid "Failed to send %s signal to %s %s process (%d): %s"
408
412
msgstr ""
409
413
 
410
 
#: init/job_process.c:1307
 
414
#: init/job_process.c:1320
411
415
#, c-format
412
416
msgid "%s %s process (%d) terminated with status %d"
413
417
msgstr ""
414
418
 
415
 
#: init/job_process.c:1312
 
419
#: init/job_process.c:1325
416
420
#, c-format
417
421
msgid "%s %s process (%d) exited normally"
418
422
msgstr ""
419
423
 
420
 
#: init/job_process.c:1327
 
424
#: init/job_process.c:1340
421
425
#, c-format
422
426
msgid "%s %s process (%d) killed by %s signal"
423
427
msgstr ""
424
428
 
425
 
#: init/job_process.c:1331
 
429
#: init/job_process.c:1344
426
430
#, c-format
427
431
msgid "%s %s process (%d) killed by signal %d"
428
432
msgstr ""
429
433
 
430
 
#: init/job_process.c:1345
 
434
#: init/job_process.c:1358
431
435
#, c-format
432
436
msgid "%s %s process (%d) stopped by %s signal"
433
437
msgstr ""
434
438
 
435
 
#: init/job_process.c:1349
 
439
#: init/job_process.c:1362
436
440
#, c-format
437
441
msgid "%s %s process (%d) stopped by signal %d"
438
442
msgstr ""
439
443
 
440
 
#: init/job_process.c:1363
 
444
#: init/job_process.c:1376
441
445
#, c-format
442
446
msgid "%s %s process (%d) continued by %s signal"
443
447
msgstr ""
444
448
 
445
 
#: init/job_process.c:1367
 
449
#: init/job_process.c:1380
446
450
#, c-format
447
451
msgid "%s %s process (%d) continued by signal %d"
448
452
msgstr ""
449
453
 
450
 
#: init/job_process.c:1502
 
454
#: init/job_process.c:1515
451
455
#, c-format
452
456
msgid "%s respawning too fast, stopped"
453
457
msgstr ""
454
458
 
455
 
#: init/job_process.c:1508
 
459
#: init/job_process.c:1521
456
460
#, c-format
457
461
msgid "%s %s process ended, respawning"
458
462
msgstr ""
459
463
 
460
 
#: init/job_process.c:1760
 
464
#: init/job_process.c:1621
 
465
msgid "Failed to add log to unflushed queue"
 
466
msgstr ""
 
467
 
 
468
#: init/job_process.c:1787
461
469
#, c-format
462
470
msgid "Failed to set ptrace options for %s %s process (%d): %s"
463
471
msgstr ""
464
472
 
465
 
#: init/job_process.c:1773 init/job_process.c:1968
 
473
#: init/job_process.c:1800 init/job_process.c:1995
466
474
#, c-format
467
475
msgid "Failed to continue traced %s %s process (%d): %s"
468
476
msgstr ""
469
477
 
470
 
#: init/job_process.c:1813 init/job_process.c:1904 init/job_process.c:1959
 
478
#: init/job_process.c:1840 init/job_process.c:1931 init/job_process.c:1986
471
479
#, c-format
472
480
msgid "Failed to detach traced %s %s process (%d): %s"
473
481
msgstr ""
474
482
 
475
 
#: init/job_process.c:1853
 
483
#: init/job_process.c:1880
476
484
#, c-format
477
485
msgid "Failed to deliver signal to traced %s %s process (%d): %s"
478
486
msgstr ""
479
487
 
480
 
#: init/job_process.c:1888
 
488
#: init/job_process.c:1915
481
489
#, c-format
482
490
msgid "Failed to obtain child process id for %s %s process (%d): %s"
483
491
msgstr ""
484
492
 
485
 
#: init/job_process.c:1895
 
493
#: init/job_process.c:1922
486
494
#, c-format
487
495
msgid "%s %s process (%d) became new process (%d)"
488
496
msgstr ""
489
497
 
490
 
#: init/job_process.c:1954
 
498
#: init/job_process.c:1981
491
499
#, c-format
492
500
msgid "%s %s process (%d) executable changed"
493
501
msgstr ""
494
502
 
495
 
#: init/log.c:327
 
503
#: init/log.c:350
496
504
msgid "Failed to write to log file"
497
505
msgstr ""
498
506
 
645
653
msgid "Invalid job class"
646
654
msgstr ""
647
655
 
648
 
#: util/initctl.c:2212
 
656
#: util/initctl.c:2248
649
657
msgid "unknown event"
650
658
msgstr ""
651
659
 
652
 
#: util/initctl.c:2216
 
660
#: util/initctl.c:2252
653
661
msgid "unknown job"
654
662
msgstr ""
655
663
 
656
 
#: util/initctl.c:2317
 
664
#: util/initctl.c:2353
657
665
msgid "use D-Bus session bus to connect to init daemon (for testing)"
658
666
msgstr ""
659
667
 
660
 
#: util/initctl.c:2319
 
668
#: util/initctl.c:2355
661
669
msgid "use D-Bus system bus to connect to init daemon"
662
670
msgstr ""
663
671
 
664
 
#: util/initctl.c:2321
 
672
#: util/initctl.c:2357
665
673
msgid "destination well-known name on D-Bus bus"
666
674
msgstr ""
667
675
 
668
 
#: util/initctl.c:2334
 
676
#: util/initctl.c:2370
669
677
msgid "do not wait for job to start before exiting"
670
678
msgstr ""
671
679
 
672
 
#: util/initctl.c:2346
 
680
#: util/initctl.c:2382
673
681
msgid "do not wait for job to stop before exiting"
674
682
msgstr ""
675
683
 
676
 
#: util/initctl.c:2358
 
684
#: util/initctl.c:2394
677
685
msgid "do not wait for job to restart before exiting"
678
686
msgstr ""
679
687
 
680
 
#: util/initctl.c:2397
 
688
#: util/initctl.c:2433
681
689
msgid "do not wait for event to finish before exiting"
682
690
msgstr ""
683
691
 
684
 
#: util/initctl.c:2438
 
692
#: util/initctl.c:2474
685
693
msgid ""
686
694
"enumerate list of events and jobs causing job created from job config to "
687
695
"start/stop"
688
696
msgstr ""
689
697
 
690
 
#: util/initctl.c:2451
 
698
#: util/initctl.c:2487
691
699
msgid "ignore specified list of events (comma-separated)"
692
700
msgstr ""
693
701
 
694
 
#: util/initctl.c:2453
 
702
#: util/initctl.c:2489
695
703
msgid "Generate warning for any unreachable events/jobs"
696
704
msgstr ""
697
705
 
698
 
#: util/initctl.c:2472
 
706
#: util/initctl.c:2508
699
707
msgid "Job"
700
708
msgstr ""
701
709
 
702
 
#: util/initctl.c:2479
 
710
#: util/initctl.c:2515
703
711
msgid "Event"
704
712
msgstr ""
705
713
 
706
 
#: util/initctl.c:2487 util/initctl.c:2499 util/initctl.c:2510
707
 
#: util/initctl.c:2521 util/initctl.c:2528
 
714
#: util/initctl.c:2523 util/initctl.c:2535 util/initctl.c:2546
 
715
#: util/initctl.c:2557 util/initctl.c:2564
708
716
msgid "JOB [KEY=VALUE]..."
709
717
msgstr ""
710
718
 
711
 
#: util/initctl.c:2488
 
719
#: util/initctl.c:2524
712
720
msgid "Start job."
713
721
msgstr ""
714
722
 
715
 
#: util/initctl.c:2489
 
723
#: util/initctl.c:2525
716
724
msgid ""
717
725
"JOB is the name of the job that is to be started, this may be followed by "
718
726
"zero or more environment variables to be defined in the new job.\n"
722
730
"an existing instance is already running."
723
731
msgstr ""
724
732
 
725
 
#: util/initctl.c:2500
 
733
#: util/initctl.c:2536
726
734
msgid "Stop job."
727
735
msgstr ""
728
736
 
729
 
#: util/initctl.c:2501
 
737
#: util/initctl.c:2537
730
738
msgid ""
731
739
"JOB is the name of the job that is to be stopped, this may be followed by "
732
740
"zero or more environment variables to be passed to the job's pre-stop and "
736
744
"decide which of multiple instances will be stopped."
737
745
msgstr ""
738
746
 
739
 
#: util/initctl.c:2511
 
747
#: util/initctl.c:2547
740
748
msgid "Restart job."
741
749
msgstr ""
742
750
 
743
 
#: util/initctl.c:2512
 
751
#: util/initctl.c:2548
744
752
msgid ""
745
753
"JOB is the name of the job that is to be restarted, this may be followed by "
746
754
"zero or more environment variables to be defined in the job after "
750
758
"decide which of multiple instances will be restarted."
751
759
msgstr ""
752
760
 
753
 
#: util/initctl.c:2522
 
761
#: util/initctl.c:2558
754
762
msgid "Send HUP signal to job."
755
763
msgstr ""
756
764
 
757
 
#: util/initctl.c:2523
 
765
#: util/initctl.c:2559
758
766
msgid ""
759
767
"JOB is the name of the job that is to be sent the signal, this may be "
760
768
"followed by zero or more environment variables to distinguish between job "
761
769
"instances.\n"
762
770
msgstr ""
763
771
 
764
 
#: util/initctl.c:2529
 
772
#: util/initctl.c:2565
765
773
msgid "Query status of job."
766
774
msgstr ""
767
775
 
768
 
#: util/initctl.c:2530
 
776
#: util/initctl.c:2566
769
777
msgid ""
770
778
"JOB is the name of the job that is to be queried, this may be followed by "
771
779
"zero or more environment variables to distguish between job instances.\n"
772
780
msgstr ""
773
781
 
774
 
#: util/initctl.c:2536
 
782
#: util/initctl.c:2572
775
783
msgid "List known jobs."
776
784
msgstr ""
777
785
 
778
 
#: util/initctl.c:2537
 
786
#: util/initctl.c:2573
779
787
msgid "The known jobs and their current status will be output."
780
788
msgstr ""
781
789
 
782
 
#: util/initctl.c:2540
 
790
#: util/initctl.c:2576
783
791
msgid "EVENT [KEY=VALUE]..."
784
792
msgstr ""
785
793
 
786
 
#: util/initctl.c:2541
 
794
#: util/initctl.c:2577
787
795
msgid "Emit an event."
788
796
msgstr ""
789
797
 
790
 
#: util/initctl.c:2542
 
798
#: util/initctl.c:2578
791
799
msgid ""
792
800
"EVENT is the name of an event the init daemon should emit, this may be "
793
801
"followed by zero or more environment variables to be included in the event.\n"
794
802
msgstr ""
795
803
 
796
 
#: util/initctl.c:2548
 
804
#: util/initctl.c:2584
797
805
msgid "Reload the configuration of the init daemon."
798
806
msgstr ""
799
807
 
800
 
#: util/initctl.c:2552
 
808
#: util/initctl.c:2588
801
809
msgid "Request the version of the init daemon."
802
810
msgstr ""
803
811
 
804
 
#: util/initctl.c:2555
 
812
#: util/initctl.c:2591
805
813
msgid "[PRIORITY]"
806
814
msgstr ""
807
815
 
808
 
#: util/initctl.c:2556
 
816
#: util/initctl.c:2592
809
817
msgid "Change the minimum priority of log messages from the init daemon"
810
818
msgstr ""
811
819
 
812
 
#: util/initctl.c:2558
 
820
#: util/initctl.c:2594
813
821
msgid ""
814
822
"PRIORITY may be one of:\n"
815
823
"  `debug' (messages useful for debugging upstart are logged, equivalent to --"
826
834
"Without arguments, this outputs the current log priority."
827
835
msgstr ""
828
836
 
829
 
#: util/initctl.c:2575 util/initctl.c:2581
 
837
#: util/initctl.c:2611 util/initctl.c:2617
830
838
msgid "[CONF]"
831
839
msgstr ""
832
840
 
833
 
#: util/initctl.c:2576
 
841
#: util/initctl.c:2612
834
842
msgid "Show emits, start on and stop on details for job configurations."
835
843
msgstr ""
836
844
 
837
 
#: util/initctl.c:2577
 
845
#: util/initctl.c:2613
838
846
msgid ""
839
847
"If CONF specified, show configuration details for single job configuration, "
840
848
"else show details for all jobs configurations.\n"
841
849
msgstr ""
842
850
 
843
 
#: util/initctl.c:2582
 
851
#: util/initctl.c:2618
844
852
msgid "Check for unreachable jobs/event conditions."
845
853
msgstr ""
846
854
 
847
 
#: util/initctl.c:2583
 
855
#: util/initctl.c:2619
848
856
msgid ""
849
857
"List all jobs and events which cannot be satisfied by currently available "
850
858
"job configuration files"
851
859
msgstr ""
852
860
 
853
 
#: util/initctl.c:2587
 
861
#: util/initctl.c:2623
854
862
msgid "JOB"
855
863
msgstr ""
856
864
 
857
 
#: util/initctl.c:2588
 
865
#: util/initctl.c:2624
858
866
msgid "Show job usage message if available."
859
867
msgstr ""
860
868
 
861
 
#: util/initctl.c:2589
 
869
#: util/initctl.c:2625
862
870
msgid "JOB is the name of the job which usage is to be shown.\n"
863
871
msgstr ""
864
872
 
 
873
#: util/initctl.c:2629
 
874
msgid "Inform Upstart that disk is now writeable."
 
875
msgstr ""
 
876
 
 
877
#: util/initctl.c:2630
 
878
msgid ""
 
879
"Run to ensure output from jobs ending before disk is writeable are flushed "
 
880
"to disk"
 
881
msgstr ""
 
882
 
865
883
#: util/reboot.c:113
866
884
msgid "don't sync before reboot or halt"
867
885
msgstr ""