aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 502c476b487a9d1c5bc6faa12e68071c3aef3aeb (plain)
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
1999-03-16  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp: fix for CHATPID (bug #1343)

1999-03-15  Bill Nottingham  <notting@redhat.com>

	* sysconfig.txt: fixes from ultrapenguin - document SYSFONTACM

	* lang.sh: more sysfontacm fixes

	* lang.sh: more support for SYSFONTACM from consoletools

	* setsysfont:
	work with SYSFONTACM and use consolechars from console-tools

	* sysconfig/network-scripts/ifup:
	add routes to non-local subnets if they aren't already there

	* sysconfig/network-scripts/ifup-aliases:
	changes from ultrapenguin (bash2 stuff)

1999-03-15  Michael Johnson  <johnsonm@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: pam_console cleanups

1999-03-15  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: remove console-tools from deps

1999-03-15  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: add gawk to dependencies

1999-03-14  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions: change variable name

	* rc.d/init.d/functions, rc.d/rc.sysinit, src/initlog.c:
	if [ 0 ] don't work in shell. *thwap*

1999-03-11  Erik Troan  <ewt@redhat.com>

	* initscripts.spec: release 2

1999-03-10  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: remove ifdhcpcdccpdc-done

1999-03-10  Erik Troan  <ewt@redhat.com>

	* sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
	pump actually works now

1999-03-10  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/nfsfs: add a mount -a after nfs mounts

1999-03-10  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/nfsfs: add a mount -a after nfs mounts

1999-03-10  Erik Troan  <ewt@redhat.com>
	* sysconfig/network-scripts/ifup: use pump for bootp and dhcp
	* sysconfig/network-scripts/ifdhcp-done: obsolete

1999-03-10  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	change to pidofproc suggested by "Mike McHenry" <mmchen@minn.net>

	* src/minilogd.c: ack. Must remove debugging code.

1999-02-26  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions: fix killproc to be more sane

1999-02-25  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: remove random from rc.sysinit

	* rc.d/rc.sysinit: put preferred support back in

	* ChangeLog, sysconfig.txt, sysconfig/init:
	more changes for sysconfig/init

	* rc.d/init.d/functions: ditto

1999-02-23  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit: fix 'force fsck on boot'

1999-02-22  Bill Nottingham  <notting@redhat.com>

	* Makefile, initscripts.spec, rc.d/init.d/functions, sysconfig/init:
	add default /etc/sysconfig/init
	change raw ansi to echo -e
	add a 'serial' mode that has no ansi escapes

1999-02-19  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/functions:
	$@ -> $*. I knew there was a reason I did that.

1999-02-18  Bill Nottingham  <notting@redhat.com>

	* rc.d/init.d/single: fie, a missing fi. Also, source functions.

	* rc.d/init.d/functions: $* -> $@

1999-02-13  Cristian Gafton  <gafton@redhat.com>

	* rc.d/init.d/halt: Attempt a fix for the raid stop code

1999-02-11  Bill Nottingham  <notting@redhat.com>

	* rc.d/rc.sysinit:
	Remove support for modules/preferred, since we don't need it anymore.

1999-02-10  Bill Nottingham  <notting@redhat.com>

	* sysconfig/network-scripts/ifdhcpc-done, sysconfig/network-scripts/ifup:
	fix kernel-2.2 double net routes, remove '-x' from ifdhcpc-done

	* inittab:
	turn off xdm in runlevel 5

1999-02-05  Bill Nottingham  <notting@redhat.com>

	* src/process.c, sysconfig/network-scripts/ifup-aliases:
	bill is a moron. also, fix ifup-aliases for bash2

	* rc.d/init.d/functions:
	add /usr/X11R6/bin to path, so 'daemon xdm' works

1999-02-04  Bill Nottingham  <notting@redhat.com>

	* initscripts.spec: add changelog entry for this mess

	* src/initlog.h, src/loglevel.c:
	fix syscall to something lots more portable

	* initscripts.spec, src/loglevel.c, sysconfig.txt:
	add loglevel.c, document LOGLEVEL setting

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/rc.sysinit:
	bugfixes for 'old' mode

	* rc.d/init.d/single, rc.d/rc.sysinit:
	swap workaround; kerneld/kmod fixes

	* rc.d/init.d/random, src/Makefile, src/initlog.c, src/process.c, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/rc, rc.d/rc.sysinit:
	fixes

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/rc, rc.d/rc.sysinit, src/initlog.c, src/process.c:
	bugfixes...

1999-02-03  notting  <notting@redhat.com>

	* rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/network,
	  rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/single, rc.d/rc:
	more initlog changes

        * rc.d/init.d/functions
	wait a little longer for kill -TERM

	* initscripts.spec, rc.d/rc.sysinit, setsysfont,
	  sysconfig/network-scripts/ifup-ppp:
	setsysfont only if font defined 
	do hwclock --adjust
	fix /forcefsck
	fix ifup-ppp (move & to after redirect)

	* Makefile, initscripts.spec, rc.d/init.d/functions,
          rc.d/init.d/network, rc.d/rc, rc.d/rc.sysinit,
	  src/Makefile, src/initlog.1, src/initlog.c,
	  src/initlog.h, src/minilogd.c,
	  src/process.c, src/process.h, sysconfig.txt:
	add initlog stuff. Use %defattr in specfile.
	
	* rc.d/init.d/halt:
	  do "halt -p", "umount -f" in shutdown.

1999-01-25  jbj  <jbj@redhat.com>

	* rc.d/rc.sysinit:
	Perform quota checking on file systems after they are marked read/write (#719).

	* sysconfig/network-scripts/ifup-ppp:
	Explicitly force RX escape char negotiation if ESCAPECHARS = no (#519).

	* sysconfig/network-scripts/ifup:
	bootpc: 2.2 kernels complain about broadcast and netmask on ifup.
	bootpc: Give slow 10Mbps/100Mbps autodetecting cards a second chance.

	* initscripts.spec: Bump version.

1998-12-06  jbj  <jbj@redhat.com>

	* sysconfig/network-scripts/ifup-ipx: Bug #205 sez':
	in ifup-ipx script underlines in next line should be
	changes to dots

	for frametype in 802_2 802_3 ETHERII SNAP ; do

	I have verified this to be a bug in the initscripts. If autoprimary
	and and autoframetype is enabled in /etc/sysconfig/network then the
	interface will come up properly. If they are set to no then whatever
	frametypes that are defined in the
	/etc/sysconfig/network-scripts/ifcfg-ethx will not become activated.

1998-11-12  pbrown  <pbrown@redhat.com>

	* rc.d/init.d/halt, initscripts.spec:
	halt passed the -i flag to disable network interfaces (new halt option).

1998-11-10  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-aliases, initscripts.spec:
	linuxconf ipalias fix; work with both old and new linuxconf

1998-11-02  notting  <notting@redhat.com>

	* rc.d/init.d/functions: sort daemons in status() by pid

1998-10-28  notting  <notting@redhat.com>

	* rc.d/init.d/functions:
	fix status() (was catching instance of initscripts)

1998-10-15  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit: can't have spaces around = in sh

	* rc.d/init.d/halt: fixed shell stuff

	* initscripts.spec: version 3.78

	* rc.d/init.d/halt: raidstop -r doesn't work for 5.2 ;-)

	* initscripts.spec: added raidstop to halt

	* rc.d/init.d/halt: added raidstop stuff

	* initscripts.spec: version 3.77

	* initscripts.spec: fixed raidstart

	* rc.d/rc.sysinit: raidstart doesn't exist! use raidadd/raidrun

1998-10-12  gafton  <gafton@redhat.com>

	* initscripts.spec, lang.sh, sysconfig.txt: Handle LC_ALL

1998-10-12  pbrown  <pbrown@redhat.com>

	* initscripts.spec, setsysfont: updated so that setfont always runs.

1998-10-06  gafton  <gafton@redhat.com>

	* initscripts.spec: New release

	* rc.d/rc.sysinit: Accept all kernel numbers instead of just 2.0.x

1998-10-05  gafton  <gafton@redhat.com>

	* initscripts.spec: require: e2fsprogs

1998-10-03  gafton  <gafton@redhat.com>

	* .cvsignore, ChangeLog, initscripts.spec, lang.sh:
	Use SYSTERM, not SYSTEM in lang.sh

1998-09-25  gafton  <gafton@redhat.com>

	* Makefile, initscripts.spec: New file part of the dist: inputrc

	* lang.sh: Set INPUTRC and LESSCHARSET on linux-lat systems

	* inputrc: New file

1998-09-21  johnsonm  <johnsonm@redhat.com>

	* rc.d/init.d/functions:
	a few bugs fixed and a few unneeded processes removed

	* sysconfig.txt: updated QUEUE meaning

1998-09-17  johnsonm  <johnsonm@redhat.com>

	* sysconfig.txt: /etc/sysconfig/sendmail added

1998-09-16  jbj  <jbj@redhat.com>

	* sysconfig.txt: Document UNIMAP variable.

	* initscripts.spec: Version 3.71.

	* rc.d/rc.sysinit: Raid startup.

	* rc.d/rc: Don't run [KS]??foo.{rpmsave,rpmorig} scripts.

	* setsysfont:
	I've changed /sbin/setsysfont from the RH51 initscripts package to handle
	Unicode fonts. To do this I've added the variable UNIMAP to
	/etc/sysconfig/i18n (It holds the name of the Unicode mapping table.) The
	changes should be backwards compatible.

	Niels Kristian Bech Jensen - nkbj@image.dk - http://www.image.dk/~nkbj/

1998-08-21  jbj  <jbj@redhat.com>

	* rc.d/rc.sysinit:
	Remove Postgres sockets while booting (problem #816).

1998-08-17  ewt  <ewt@redhat.com>

	* initscripts.spec: verion 3.70

	* rc.d/rc.local:
	1) only update /etc/issue if /etc/redhat-release is present
	2) use the text of /etc/redhat-releae verbatim; don't add "Red Hat Linux" to
	   the front

1998-08-16  jbj  <jbj@redhat.com>

	* initscripts.spec, rc.d/init.d/halt, rc.d/rc.sysinit:
	Remove annoying error messages.

1998-08-14  jbj  <jbj@redhat.com>

	* rc.d/rc.sysinit:
	Remove attempt to avoid running depmod on 2.1.x kernels.

1998-08-01  jbj  <jbj@redhat.com>

	* rc.d/rc.sysinit: Typo (Hao Li <hli@wag.caltech.edu>)

1998-07-07  jbj  <jbj@redhat.com>

	* rc.d/init.d/nfsfs, rc.d/init.d/network, initscripts.spec:
	Permit /usr to be NFS mounted.

1998-07-07  johnsonm  <johnsonm@redhat.com>

	* sysvinitfiles: priority specification

	* sysconfig/network-scripts/ifdown-ppp:
	fix long-standing bug and work with (currently vaporware) newer ps versions

1998-07-07  jbj  <jbj@redhat.com>

	* sysconfig/network-scripts/ifup-ppp: Invert logic for ESCAPECHARS=yes.

	* sysconfig/network-scripts/ifup-sl, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifdown:
	Always "cd /etc/sysconfig/network-scripts" before sourcing network_functions.

	* sysconfig/network-scripts/ifdown-sl: Bug report:

	I am running dip-3.3.7o-10 and initscripts-3.32-1 on Red Hat 5.0 Intel and
	was unable to terminate an established SLIP connection in the standard
	fashion.  After some hacking around I discovered that the problem
	was that when dip establishes a connection, it changes it's argument
	list to '-dip (IP_ADDRESS)' where IP_ADDRESS is the local IP address.
	This of course breaks the network-scripts handling of the connection.
	I've modified /etc/sysconfig/network-scripts/ifdown-sl to take this
	into account and included the modified file below.  I don't think it
	will work for people with dynamically allocated IP addresses though...

	-Mike Wittman
	support login: wittman@cs.berkeley.edu

1998-07-01  jbj  <jbj@redhat.com>

	* rc.d/rc.sysinit: Perform rhkmvtag magic with module-info.

	* rc.d/rc.sysinit: Remove debugging "echo ...".

	* rc.d/rc.sysinit:
	Use rhkmvtag to attach modules directory to running kernel.

1998-07-01  ewt  <ewt@redhat.com>

	* src/usernetctl.c, initscripts.spec:
	USERNET attribute can have "" around it

1998-07-01  jbj  <jbj@redhat.com>

	* initscripts.spec: Add %defattr for non-root build/install.

	* Makefile: More cvs workarounds.

	* Makefile: Deal with some cvs quirks.

	* initscripts.spec: Bump version.

	* rc.d/init.d/halt: Turn off accounting before unmounting /var.

	* rc.d/rc.sysinit: Correctly check fsck return code for non-root fs.

1998-06-21  jbj  <jbj@redhat.com>

	* sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup, src/usernetctl.c, rc.d/init.d/network, rc.d/rc.sysinit, initscripts.spec:
	Fix bug track problems (#677, #731, #734, E-mail).

1998-06-07  ewt  <ewt@redhat.com>

	* initscripts.spec: version 3.66

	* rc.d/rc.sysinit:
	look for bootfile= to set /lib/modules/preferred symlink

1998-06-02  ewt  <ewt@redhat.com>

	* initscripts.spec: version 3.65

1998-06-01  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit:
	1) if preferred doesn't exist, run depmod -a normally
	2) do proper symlink check for preferred

	* src/Makefile: ipcalc shouldn't be setgid root

1998-05-10  ewt  <ewt@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	be more forcefull about creating preferred directories

1998-05-08  djb  <djb@redhat.com>

	* initscripts.spec: updated version number

	* ppp/ip-up: added path shit to ip-up

	* initscripts.spec: forgot to increment version number

	* setsysfont: made setsysfont do *nothing* if there is no $SYSFONT

1998-05-06  djb  <djb@redhat.com>

	* Makefile, initscripts.spec: makefile bug

	* Makefile, initscripts.spec, lang.sh, rc.d/rc.sysinit:
	moved stuff to /etc/profile.d/lang.sh

	* Makefile: minor fix

	* setsysfont: added setsysfont

	* Makefile, initscripts.spec, rc.d/rc.sysinit, sysconfig.txt:
	added added sysconfig/i18n support

1998-05-04  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: added missing files

	* initscripts.spec: new release

1998-05-03  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: more commentary

	* rc.d/init.d/network, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ipx, sysconfig/network-scripts/ifup-routes, sysconfig.txt:
	update to linuxconf 1.11r8 capabilities.
	Full support for IPX as configured by linuxconf.
	Updated sysconfig.txt documentation to reflect new parameters.

1998-05-02  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-aliases, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-routes, initscripts.spec, rc.d/init.d/network:
	linuxconf support

	* rc.d/init.d/network: probe function, more hinting

1998-05-01  ewt  <ewt@redhat.com>

	* rc.d/init.d/network: added missing ;;

	* initscripts.spec: *** empty log message ***

	* rc.d/rc.sysinit: run depmod properly

	* initscripts.spec:
	requires 2.1.85-3 for /lib/modules/preferred directory

	* initscripts.spec: vesrion 3.54

	* rc.d/rc.sysinit: use /lib/modules/preferred symlink

1998-04-30  djb  <djb@redhat.com>

	* rc.d/init.d/random: various cleanups

	* sysconfig/network-scripts/ifup-plip: plip cleanup

	* rc.d/rc.sysinit:
	rc.sysinit was removing /etc/nologin.  Bad.  Removed.

	* rc.d/init.d/nfsfs: added sourcing of functions

1998-04-24  johnsonm  <johnsonm@redhat.com>

	* rc.d/rc: info for linuxconf

1998-04-21  johnsonm  <johnsonm@redhat.com>

	* rc.d/rc.sysinit: handle kmod in 2.1 kernels nicely

1998-04-20  johnsonm  <johnsonm@redhat.com>

	* rc.d/init.d/random: works better

	* rc.d/init.d/random: reasonable status, restart, reload

	* rc.d/init.d/nfsfs: Added reload function.
	Made status do something other than "command not found".

	* rc.d/init.d/killall: tpyo

	* rc.d/init.d/network: Made some sense of the "network status" command.
	Integrate with linuxconf (works with or without).

1998-04-20  ewt  <ewt@redhat.com>

	* initscripts.spec: version 3.53

	* rc.d/rc.sysinit: sets up modules symlink properly

	* rc.d/rc.sysinit: added more "" to get rid of some problems

1998-04-14  johnsonm  <johnsonm@redhat.com>

	* rc.d/rc: only kill things that are currently up

1998-04-05  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit, sysconfig/network-scripts/network-functions:
	moved adding /etc/resolv.conf search path to normal reverse name lookup
	handling

	* initscripts.spec, rc.d/rc.sysinit:
	fixed bugs in kernel-release handling

1998-04-02  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit:
	1) set domain variable if none is set in /etc/sysconfig/network
	2) add search path to /etc/resolv.conf if none is present

1998-03-30  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit:
	make /lib/modules/default point to the proper modules for this kernel

1998-03-22  ewt  <ewt@redhat.com>

	* initscripts.spec: *** empty log message ***

	* sysconfig/network-scripts/ifup: added netmask calculation

	* src/ipcalc.1: added --netmask

	* src/ipcalc.c: added --netmask argument

	* initscripts.spec: version 3.51

	* sysconfig/network-scripts/ifup: fixed network address calculations

	* src/ipcalc.1: fixed man page

1998-03-16  johnsonm  <johnsonm@redhat.com>

	* sysconfig.txt: document the static-routes file.
	Include documentation for how it *will* be, rather than how it is now ("any").

1998-03-10  johnsonm  <johnsonm@redhat.com>

	* sysconfig.txt: more detail on ifcfg files

	* sysconfig.txt: first rev to Jacques

1998-03-10  ewt  <ewt@redhat.com>

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post:
	look for ipcalc in /bin, not /sbin

	* sysconfig/network-scripts/network-functions: added missing \

	* src/Makefile: ipcalc should go in /bin, not /sbin

	* sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifup:
	1) added need_hostname and set_hostname functions
	2) changed hostname lookup to use ipcalc

	* initscripts.spec: added ipcalc

	* src/Makefile: added ipcalc.1

	* src/ipcalc.1: added man page

	* src/ipcalc.c: added --hostname option

	* initscripts.spec: version 3.50

	* sysconfig/network-scripts/ifup:
	use ipcalc to calculate netmask and/or broadcast address

	* src/Makefile, src/ipcalc.c: added ipcalc

	* initscripts.spec: version 3.32

	* sysconfig/network-scripts/ifdhcpc-done:
	removed senseless dhcp log in /tmp

1998-03-09  ewt  <ewt@redhat.com>

	* initscripts.spec: *** empty log message ***

	* sysconfig/network-scripts/ifup:
	if bootp fails and there is no fallback IP, take down the device

	* initscripts.spec: added info on 3.31 release

	* Makefile: still more cvs workarounds

	* Makefile: MORE cvs brokenness

	* Makefile: more cvs broknness

	* Makefile: made archive rule work w/ broken cvs

	* sysconfig/network-scripts/ifup: added check for mktemp failure

1998-03-04  johnsonm  <johnsonm@redhat.com>

	* sysconfig.txt: Initial revision of sysconfig hierarchy description

1998-02-14  johnsonm  <johnsonm@redhat.com>

	* sysvinitfiles: Took out autoreload tag.

1998-02-13  johnsonm  <johnsonm@redhat.com>

	* sysvinitfiles: per-config file autoreload

1998-02-12  johnsonm  <johnsonm@redhat.com>

	* sysvinitfiles: Languages.
	A few more notes on how to do things.

1998-02-10  johnsonm  <johnsonm@redhat.com>

	* sysvinitfiles: Standard Red Hat copyright

	* sysvinitfiles:
	Added full instructions on writing a System V init script for Red Hat Linux.

1998-02-09  johnsonm  <johnsonm@redhat.com>

	* sysvinitfiles: pidfile contents are examined after all...

	* sysvinitfiles: Complete list of tags to use in sysv init files

1998-02-06  ewt  <ewt@redhat.com>

	* initscripts.spec: *** empty log message ***

	* src/usernetctl.c: didn't work for cloned devices

1998-01-12  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: /sbin/

	* sysconfig/network-scripts/ifup-routes: /sbin/ isn't always in $PATH

1997-12-31  ewt  <ewt@redhat.com>

	* initscripts.spec: *** empty log message ***

	* rc.d/rc.sysinit:
	- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
	- the logic for when  /var/lock/subsys/kerneld is touched was backwards

1997-12-30  ewt  <ewt@redhat.com>

	* initscripts.spec: version 3.30

	* rc.d/rc.sysinit:
	1) tried to get /proc stuff right one more time (uses -t nonfs,proc now)
	2) added support for /fsckoptions
	3) changed 'yse' to 'yes'

1997-12-09  ewt  <ewt@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit:
	1) set domainname to "" if none is specified
	2) version 3.29

	* initscripts.spec: version 3.28

	* rc.d/rc.sysinit: fixed wrong umount

1997-12-08  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit: more /proc mounting fixes

	* initscripts.spec: version 3.27

	* rc.d/rc.sysinit:
	changed how /proc gets mounted so that it ends up in /etc/mtab

1997-12-08  johnsonm  <johnsonm@redhat.com>

	* Makefile:
	Allow creating new archives without creating a new tag if necessary.

	* initscripts.spec: release 3.26

1997-11-20  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/network-functions: Inheritance was wrong.

1997-11-07  ewt  <ewt@redhat.com>

	* initscripts.spec: *** empty log message ***

	* rc.d/rc.sysinit: added sound stuff

1997-11-07  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: new version

	* rc.d/init.d/network: Added missing "then"

1997-11-06  johnsonm  <johnsonm@redhat.com>

	* rc.d/init.d/network:
	only enable/disable forwarding on start, always disable on stop.

	* initscripts.spec: New version

	* sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post:
	PPP debugging fixed.
	PPP Persisting fixed.
	Moved netreport stuff into one place.

1997-11-02  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit: don't mount /proc twice

	* rc.d/rc.sysinit: don't umount /proc after mounting it

1997-10-31  ewt  <ewt@redhat.com>

	* rc.d/rc.sysinit, initscripts.spec: added isapnp support

1997-10-28  ewt  <ewt@redhat.com>

	* initscripts.spec: make archive

1997-10-28  djb  <djb@redhat.com>

	* rc.d/rc: edited comments

	* initscripts.spec: changelog

	* rc.d/init.d/functions: added the ability to 'nice' daemons

	* initscripts.spec, rc.d/init.d/skeleton:
	removed the skeleton initscript (basically useless)

1997-10-28  ewt  <ewt@redhat.com>

	* rc.d/init.d/single: single user mode restarts kerneld

	* rc.d/rc.sysinit: touch /var/lock/subsys/kernel

	* sysconfig/network-scripts/ifup, initscripts.spec:
	1) fixed dhcp problem
	2) version 3.21

1997-10-23  djb  <djb@redhat.com>

	* initscripts.spec: %changelog

	* rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/network:
	added status|restart to all scripts

1997-10-23  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: New version.

	* rc.d/init.d/random, initscripts.spec:
	touch random seed file before chmoding it.

1997-10-21  ewt  <ewt@redhat.com>

	* sysconfig/network-scripts/ifup:
	set hostname from bootp if hostname = (none)

1997-10-15  ewt  <ewt@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: 1) changed version to 3.19
	2) added NISDOMAIN support

1997-10-15  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: random seed protected from sight...

	* rc.d/init.d/random: Make random seed file mode 600.

1997-10-14  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: ppp sleep bug fixed.

	* sysconfig/network-scripts/ifup-ppp:
	Die if ifdown-ppp was called on the device during the sleep.

1997-10-13  ewt  <ewt@redhat.com>

	* Makefile: grab version from .spec file

	* initscripts.spec, rc.d/init.d/nfsfs, rc.d/init.d/random:
	1) updated .spec file
	2) removed trailing spaces

	* Makefile: added archive rule

	* rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, initscripts.spec:
	1) version 3.18
	2) switched to new chkconfig which doesn't use database file

1997-10-11  ewt  <ewt@redhat.com>

	* initscripts.spec, rc.d/rc.sysinit: fixed rc.sysinit for hwclock

1997-10-10  johnsonm  <johnsonm@redhat.com>

	* rc.d/rc.sysinit: Only check scsi if it exists.

1997-10-09  ewt  <ewt@redhat.com>

	* initscripts.spec, rc.d/init.d/functions:
	added ulimit -c 0 to daemon function

1997-10-08  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: new version

	* initscripts.spec: prereq

1997-10-08  djb  <djb@redhat.com>

	* initscripts.spec: added chkconfig support

1997-10-06  ewt  <ewt@redhat.com>

	* initscripts.spec: fixed typo

	* initscripts.spec: changed spec file to put version in a single place

	* initscripts.spec: updated version number

	* sysconfig/network-scripts/network-functions:
	fixes for config files which were given w/ fully qualified pathnames

	* sysconfig/network-scripts/ifup:
	Removed pcmcia hacks for releases prior to RH 3.0.3

1997-10-01  johnsonm  <johnsonm@redhat.com>

	* Makefile, initscripts.spec: Changes for 3.15

	* initscripts.spec: Preparing for 3.14

	* src/usernetctl.c: Only compare variable name, not entire string.

	* src/usernetctl.c: strncmp sense reversed.

1997-09-30  johnsonm  <johnsonm@redhat.com>

	* src/usernetctl.1, src/usernetctl.c: Added report option for usernet.

	* initscripts.spec: Remove the whole buildroot in %clean

1997-09-29  johnsonm  <johnsonm@redhat.com>

	* initscripts.spec: Make missing directories.

	* initscripts-3.13.spec:
	Don't want name changing every time; renamed to initscripts.spec

	* initscripts.spec:
	Added changelog entry and added symlinks to spec file.

1997-09-24  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifdown: source_config

	* sysconfig/network-scripts/ifup-ppp: CONFIG after daemon daemonizing.

	* sysconfig/network-scripts/ifup-ppp: Fixed potential syntax error.

1997-09-23  djb  <djb@redhat.com>

	* initscripts-3.13.spec: added Requires mktemp and changelog

	* sysconfig/network-scripts/ifup: added mktemp support

1997-09-23  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-sl:
	Disassociate from controlling tty so SIGHUPs won't be generated.

1997-09-21  johnsonm  <johnsonm@redhat.com>

	* src/usernetctl.c:
	Fixed allocation bug Erik found, plus a few stylistic points.

1997-09-18  johnsonm  <johnsonm@redhat.com>

	* src/usernetctl.1, src/usernetctl.c, sysconfig/network-scripts/ifup-sl, sysconfig/network-scripts/network-functions, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifdown-ppp:
	Support alternative device configurations.

1997-09-18  djb  <djb@redhat.com>

	* initscripts-3.13.spec, initscripts-3.12.spec: updated spec file

	* rc.d/init.d/functions: Fixed awk bug in pidofproc

1997-09-17  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifup-post:
	Don't print an error if no aliases exist.

1997-09-16  johnsonm  <johnsonm@redhat.com>

	* rc.d/init.d/network: General cleanup.
	Don't start devices that shouldn't be started.

1997-09-16  djb  <djb@redhat.com>

	* rc.d/init.d/functions:
	changed the order of the check for process Id...first is /var/run/pid
	and the second is pidof.

1997-09-16  johnsonm  <johnsonm@redhat.com>

	* sysconfig/network-scripts/ifdown-ppp:
	Bring down pppd even if only ifup-ppp is running, waiting to persist.

1997-09-16  djb  <djb@redhat.com>

	* initscripts-3.12.spec, rc.d/init.d/functions:
	changed status() to be more intelligent wrt programs that change argv[0]

1997-09-16  johnsonm  <johnsonm@redhat.com>

	* src/usernetctl.c:
	Users are not required to specify the "ifcfg-" part of the config file name.

	* sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp:
	ifup and ifdown complain if $1 not specified.
	The "ifcfg-" part of the device name is now optional for ifup and ifdown.
	ifdown-ppp kills a pppd's chat session if it is active.
	Generic part of ifup uses MACADDR variable if present.
	ifup-ppp honors DEBUG variable, both for pppd (debug) and chat (-v).

1997-09-16  djb  <djb@redhat.com>

	* initscripts-3.12.spec: Added spec file to CVS archive.

1997-09-16  ewt  <ewt@redhat.com>

	* ppp/ip-down, ppp/ip-up, src/Makefile, src/doexec.1, src/doexec.c, src/netreport.1, src/netreport.c, src/testd.c, src/testdinit, src/usernetctl.1, src/usernetctl.c, src/usleep.1, src/usleep.c, sysconfig/network-scripts/ifdhcpc-done, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post:
	Initial import of initscripts sources into CVS

	* ppp/ip-down, ppp/ip-up, src/Makefile, src/doexec.1, src/doexec.c, src/netreport.1, src/netreport.c, src/testd.c, src/testdinit, src/usernetctl.1, src/usernetctl.c, src/usleep.1, src/usleep.c, sysconfig/network-scripts/ifdhcpc-done, sysconfig/network-scripts/ifdown-post, sysconfig/network-scripts/ifup-post:
	New file.

	* Makefile, adjtime, inittab, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/skeleton, rc.d/rc, rc.d/rc.local, rc.d/rc.sysinit, sysconfig/network-scripts/ifcfg-lo, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl:
	Initial import of initscripts sources into CVS

	* Makefile, adjtime, inittab, rc.d/init.d/functions, rc.d/init.d/halt, rc.d/init.d/killall, rc.d/init.d/network, rc.d/init.d/nfsfs, rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/skeleton, rc.d/rc, rc.d/rc.local, rc.d/rc.sysinit, sysconfig/network-scripts/ifcfg-lo, sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifdown-sl, sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-plip, sysconfig/network-scripts/ifup-ppp, sysconfig/network-scripts/ifup-routes, sysconfig/network-scripts/ifup-sl:
	New file.

href='#n1814'>1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204
# translation of da.po to 
# Latest versions of po files are at http://www.mandrakelinux.com/l10n/da.php3
#
# Translation file of urpmi
# Copyright (C) 2000 Mandrakesoft
# Keld Simonsen <keld@dkuug.dk> 2000-2003
# Kenneth Christiansen, 2000
#
# Reviewed 2001-07-02 keld@dkuug.dk
# Troels Liebe Bentsen <tlb@iname.com>, 2000.
# Keld Simonsen <keld@dkuug.dk>, 2003, 2004.
# Keld Simonsen <keld@rap.dk>, 2003.
#
msgid ""
msgstr ""
"Project-Id-Version: da\n"
"POT-Creation-Date: 2004-01-21 11:16+0100\n"
"PO-Revision-Date: 2004-01-19 23:42+0100\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team:  <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"

#. This is a list of chars acceptable as a 'yes' answer to a Yes/No question;
#. you can put here the letters for 'yes' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Yy' for compatibility reasons
#.
#: placeholder.h:11
msgid "Yy"
msgstr "YyJj"

#. This is a list of chars acceptable as a 'no' answer to a Yes/No question;
#. you can put here the letters for 'no' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Nn' for compatibility reasons
#.
#: placeholder.h:17
msgid "Nn"
msgstr "Nn"

#: ../_irpm:23
#, c-format
msgid "installing %s\n"
msgstr "installerer %s\n"

#: ../_irpm:33
#, c-format
msgid ""
"Automatic installation of packages...\n"
"You requested installation of package %s\n"
msgstr ""
"Automatisk installation af pakker...\n"
"Du bestilte installation af pakke %s\n"

#: ../_irpm:33 ../urpme:31 ../urpmi:523
#, c-format
msgid "Is this OK?"
msgstr "Er det o.k.?"

#: ../_irpm:35 ../urpmi:141
#, c-format
msgid "Ok"
msgstr "O.k."

#: ../_irpm:36 ../urpmi:142
#, c-format
msgid "Cancel"
msgstr "Annullér"

#: ../_irpm:44 ../urpmi:459 ../urpmi:531
#, c-format
msgid " (Y/n) "
msgstr " (J/n) "

#: ../_irpm:63
#, c-format
msgid "%s: command not found\n"
msgstr "%s: kommando ikke fundet\n"

#: ../urpm.pm:108
#, c-format
msgid "Unknown webfetch `%s' !!!\n"
msgstr "Ukendt webfetch `%s' !!!\n"

#: ../urpm.pm:127
#, c-format
msgid "unknown protocol defined for %s"
msgstr "ukendt protokol defineret for %s"

#: ../urpm.pm:140
#, c-format
msgid "no webfetch (curl or wget currently) found\n"
msgstr "intet webhentningprogram (for øjeblikket 'curl' eller 'wget') fundet\n"

#: ../urpm.pm:156
#, c-format
msgid "unable to handle protocol: %s"
msgstr "kunne ikke behandle protokol: %s"

#: ../urpm.pm:177
#, c-format
msgid "copy failed: %s"
msgstr "kopiering mislykkedes: %s"

#: ../urpm.pm:182
#, c-format
msgid "wget is missing\n"
msgstr "'wget' mangler\n"

#: ../urpm.pm:227
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr "wget mislykkedes: afsluttede med %d eller signal %d\n"

#: ../urpm.pm:230
#, c-format
msgid "curl is missing\n"
msgstr "'curl' mangler\n"

#: ../urpm.pm:324
#, c-format
msgid "curl failed: exited with %d or signal %d\n"
msgstr "'curl' mislykkedes: afsluttede med %d eller signal %d\n"

#: ../urpm.pm:330 ../urpm.pm:377
#, c-format
msgid "rsync is missing\n"
msgstr "'rsync' mangler\n"

#: ../urpm.pm:374 ../urpm.pm:421
#, c-format
msgid "rsync failed: exited with %d or signal %d\n"
msgstr "'rsync' mislykkedes: afsluttede med %d eller signal %d\n"

#: ../urpm.pm:378
#, c-format
msgid "ssh is missing\n"
msgstr "'ssh' mangler\n"

#: ../urpm.pm:431 ../urpmi:608
#, c-format
msgid "        %s%% of %s completed, ETA = %s, speed = %s"
msgstr "        %s%% af %s færdige, resterer = %s, hastighed = %s"

#: ../urpm.pm:433 ../urpmi:611
#, c-format
msgid "        %s%% completed, speed = %s"
msgstr "        %s%% færdig, hastighed = %s"

#: ../urpm.pm:480 ../urpm.pm:493 ../urpm.pm:506
#, c-format
msgid "syntax error in config file at line %s"
msgstr "syntaksfejl i config fil ved linje %s"

#: ../urpm.pm:517
#, c-format
msgid "medium \"%s\" trying to use an already used hdlist, medium ignored"
msgstr "medie \"%s\" prøver at bruge en allerede brugt hdlist, medie ignoreret"

#: ../urpm.pm:523
#, c-format
msgid "medium \"%s\" trying to use an already used list, medium ignored"
msgstr "medie \"%s\" prøver at bruge en allerede brugt liste, medie ignoreret"

#: ../urpm.pm:539
#, c-format
msgid ""
"unable to take care of medium \"%s\" as list file is already used by another "
"medium"
msgstr ""
"kan ikke behandle medie \"%s\" da listefil allerede bliver brugt af et andet "
"medie"

#: ../urpm.pm:545
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
"Kunne ikke bruge navnet '%s' for navnløst medium fordi det allerede er brugt"

#: ../urpm.pm:552
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
"kunne ikke tage medie \"%s\" i beregning da ingen listefil [%s] eksisterer"

#: ../urpm.pm:556
#, c-format
msgid "unable to determine medium of this hdlist file [%s]"
msgstr "kunne ikke bestemme medie for denne hdlist-fil [%s]"

#: ../urpm.pm:565
#, c-format
msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr "kunne ikke nå hdlist-fil af \"%s\", medie ignoreret"

#: ../urpm.pm:567 ../urpm.pm:2641
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "kan ikke få adgang til filen \"%s\", medie ignoreret"

#: ../urpm.pm:591
#, c-format
msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr "prøver at forbigå eksisterende medie \"%s\", undgår"

#: ../urpm.pm:599
#, c-format
msgid ""
"virtual medium \"%s\" should not have defined hdlist or list file, medium "
"ignored"
msgstr ""
"det virtuelle medie \"%s\" bør ikke have defineret en hdlist- eller list-"
"fil, medie ignoreret"

#: ../urpm.pm:604
#, c-format
msgid "virtual medium \"%s\" should have a clear url, medium ignored"
msgstr "virtuelt medie \"%s\" bør have en klar url, medie ignoreret"

#: ../urpm.pm:613
#, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr "kunne ikke finde hdlist-fil for \"%s\", medie ignoreret"

#: ../urpm.pm:620
#, c-format
msgid "unable to find list file for \"%s\", medium ignored"
msgstr "kunne ikke finde listefil for \"%s\", medie ignoreret"

#: ../urpm.pm:643
#, c-format
msgid "incoherent list file for \"%s\", medium ignored"
msgstr "inkonsistent listefil for \"%s\", medie ignoreret"

#: ../urpm.pm:651
#, c-format
msgid "unable to inspect list file for \"%s\", medium ignored"
msgstr "kunne ikke inspicere listefil for \"%s\", medie ignoreret"

#: ../urpm.pm:684
#, c-format
msgid "too many mount points for removable medium \"%s\""
msgstr "For mange monteringspunkter for udskifteligt medium \"%s\""

#: ../urpm.pm:685
#, c-format
msgid "taking removable device as \"%s\""
msgstr "tager udskifteligt medium som \"%s\""

#: ../urpm.pm:689
#, c-format
msgid "using different removable device [%s] for \"%s\""
msgstr "bruger en anden udskiftelig enhed [%s] for \"%s\""

#: ../urpm.pm:694 ../urpm.pm:697
#, c-format
msgid "unable to retrieve pathname for removable medium \"%s\""
msgstr "kan ikke finde stinavn for udskifteligt medie \"%s\""

#: ../urpm.pm:710
#, c-format
msgid "unable to write config file [%s]"
msgstr "kunne ikke skrive config-fil [%s]"

#: ../urpm.pm:732
#, c-format
msgid "write config file [%s]"
msgstr "skriver config fil [%s]"

#: ../urpm.pm:744
#, c-format
msgid "Can't use parallel mode with use-distrib mode"
msgstr "Kan ikke bruge parallel-tilstand med 'use-distrib '-tilstand"

#: ../urpm.pm:754
#, c-format
msgid "unable to parse \"%s\" in file [%s]"
msgstr "kunne ikke tolke '%s' i fil [%s]"

#: ../urpm.pm:765
#, c-format
msgid "examining parallel handler in file [%s]"
msgstr "undersøger parallelbehandling i fil [%s]"

#: ../urpm.pm:775
#, c-format
msgid "found parallel handler for nodes: %s"
msgstr "fandt parallelbehandling for knuder: %s"

#: ../urpm.pm:779
#, c-format
msgid "using associated media for parallel mode: %s"
msgstr "bruger tilknyttet medie for parallel tilstand: %s"

#: ../urpm.pm:783
#, c-format
msgid "unable to use parallel option \"%s\""
msgstr "kan ikke bruge parallel mulighed \"%s\""

#: ../urpm.pm:794
#, c-format
msgid ""
"--synthesis cannot be used with --media, --excludemedia, --sortmedia, --"
"update or --parallel"
msgstr ""
"--synthesis kan ikke bruges med --media, --excludemedia, --sortmedia, --"
"update eller --parallel"

#: ../urpm.pm:845 ../urpm.pm:867 ../urpm.pm:1215 ../urpm.pm:1226
#: ../urpm.pm:1287 ../urpm.pm:1304 ../urpm.pm:1387 ../urpm.pm:1444
#: ../urpm.pm:1616 ../urpm.pm:1716 ../urpm.pm:1814 ../urpm.pm:1820
#: ../urpm.pm:1919 ../urpm.pm:1998 ../urpm.pm:2002
#, c-format
msgid "examining synthesis file [%s]"
msgstr "undersøger syntese-fil [%s]"

#: ../urpm.pm:849 ../urpm.pm:862 ../urpm.pm:871 ../urpm.pm:1218
#: ../urpm.pm:1229 ../urpm.pm:1293 ../urpm.pm:1299 ../urpm.pm:1392
#: ../urpm.pm:1448 ../urpm.pm:1620 ../urpm.pm:1720 ../urpm.pm:1808
#: ../urpm.pm:1826 ../urpm.pm:2008
#, c-format
msgid "examining hdlist file [%s]"
msgstr "undersøger hdlist-fil [%s]"

#: ../urpm.pm:857 ../urpm.pm:1222
#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuelt medie \"%s\" er ikke lokalt, medie ignoreret"

#: ../urpm.pm:880 ../urpm.pm:1236 ../urpm.pm:1312 ../urpm.pm:1396
#: ../urpm.pm:1724
#, c-format
msgid "problem reading hdlist or synthesis file of medium \"%s\""
msgstr "problem ved læsning af hdlist- eller syntese-fil for medie \"%s\""

#: ../urpm.pm:886 ../urpm.pm:1958
#, c-format
msgid "performing second pass to compute dependencies\n"
msgstr "udfører andet gennemløb for at beregne afhængigheder\n"

#: ../urpm.pm:898
#, c-format
msgid "skipping package %s"
msgstr "overspringer pakke %s"

#: ../urpm.pm:907
#, c-format
msgid "would install instead of upgrade package %s"
msgstr "ville installere i stedet for at opgradere pakke %s"

#: ../urpm.pm:918 ../urpm.pm:2441 ../urpm.pm:2502 ../urpm.pm:3075
#: ../urpm.pm:3173
#, c-format
msgid "unable to open rpmdb"
msgstr "kunne ikke åbne rpmdb"

#: ../urpm.pm:957
#, c-format
msgid "medium \"%s\" already exists"
msgstr "medie \"%s\" eksisterer allerede"

#: ../urpm.pm:964
#, c-format
msgid "virtual medium need to be local"
msgstr "virtuelt medie skal være lokalt"

#: ../urpm.pm:996
#, c-format
msgid "added medium %s"
msgstr "tilføjede medie %s"

#: ../urpm.pm:1012
#, c-format
msgid "unable to access first installation medium"
msgstr "kan ikke få adgang til første installationsmedium"

#: ../urpm.pm:1016
#, c-format
msgid "copying hdlists file..."
msgstr "kopierer hdlists-fil..."

#: ../urpm.pm:1018 ../urpm.pm:1327 ../urpm.pm:1416
#, c-format
msgid "...copying failed"
msgstr "...kopiering mislykkedes"

#: ../urpm.pm:1018 ../urpm.pm:1327 ../urpm.pm:1420
#, c-format
msgid "...copying done"
msgstr "...kopiering færdig"

#: ../urpm.pm:1020 ../urpm.pm:1039 ../urpm.pm:1064
#, c-format
msgid ""
"unable to access first installation medium (no Mandrake/base/hdlists file "
"found)"
msgstr ""
"kunne ikke få fat på det første installationsmedium (ingen Mandrake/base/"
"hdlists fil fundet)"

#: ../urpm.pm:1026
#, c-format
msgid "retrieving hdlists file..."
msgstr "henter hdlists-fil..."

#: ../urpm.pm:1033 ../urpm.pm:1706 ../urpm.pm:2269 ../urpm.pm:2949
#: ../urpmi.addmedia:162
#, c-format
msgid "...retrieving done"
msgstr "...hentning færdig"

#: ../urpm.pm:1035 ../urpm.pm:1690 ../urpm.pm:1699 ../urpm.pm:2272
#: ../urpm.pm:2952 ../urpmi.addmedia:164
#, c-format
msgid "...retrieving failed: %s"
msgstr "...hentning mislykkedes: %s"

#: ../urpm.pm:1055
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr "ugyldig hdlist beskrivelse '%s' i hdlists-fil"

#: ../urpm.pm:1097
#, c-format
msgid "trying to select nonexistent medium \"%s\""
msgstr "prøver at vælge ikke-eksisterende medie \"%s\""

#: ../urpm.pm:1099
#, c-format
msgid "selecting multiple media: %s"
msgstr "vælger flere medier: %s"

#: ../urpm.pm:1099
#, c-format
msgid "\"%s\""
msgstr "\"%s\""

#: ../urpm.pm:1115
#, c-format
msgid "removing medium \"%s\""
msgstr "fjerner medium \"%s\""

#: ../urpm.pm:1263
#, c-format
msgid ""
"unable to access medium \"%s\",\n"
"this could happen if you mounted manually the directory when creating the "
"medium."
msgstr ""
"Kan ikke tilgå medie '%s',\n"
"dette kan ske hvis du manuelt monterede kataloget ved oprettelsen af mediet."

#: ../urpm.pm:1316
#, c-format
msgid ""
"virtual medium \"%s\" should have valid source hdlist or synthesis, medium "
"ignored"
msgstr ""
"virtuelt medie \"%s\" burde have gyldig kilde-hdlist eller -syntese, medie "
"ignoreret"

#: ../urpm.pm:1324
#, c-format
msgid "copying description file of \"%s\"..."
msgstr "kopierer beskrivelsesfil for \"%s\"..."

#: ../urpm.pm:1347 ../urpm.pm:1576
#, c-format
msgid "computing md5sum of existing source hdlist (or synthesis)"
msgstr "beregner md5sum på eksisterende kilde-hdlist (eller -syntese)"

#: ../urpm.pm:1358 ../urpm.pm:1587
#, c-format
msgid "examining MD5SUM file"
msgstr "undersøger MD5SUM-fil"

#: ../urpm.pm:1412
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr "kopierer kilde-hdlist (eller -syntese) for \"%s\"..."

#: ../urpm.pm:1425 ../urpm.pm:1431
#, c-format
msgid "copy of [%s] failed"
msgstr "kopi af [%s] mislykkedes"

#: ../urpm.pm:1429
#, c-format
msgid "computing md5sum of copied source hdlist (or synthesis)"
msgstr "beregner md5sum på kopieret kilde-hdlist (eller -syntese)"

#: ../urpm.pm:1452 ../urpm.pm:1624 ../urpm.pm:1922
#, c-format
msgid "problem reading synthesis file of medium \"%s\""
msgstr "problem ved læsning af syntese-fil for medie \"%s\""

#: ../urpm.pm:1491
#, c-format
msgid "reading rpm files from [%s]"
msgstr "læser rpm-filer fra [%s]"

#: ../urpm.pm:1510
#, c-format
msgid "unable to read rpm files from [%s]: %s"
msgstr "kunne ikke læse rpm-filer fra  [%s]: %s"

#: ../urpm.pm:1515
#, c-format
msgid "no rpm files found from [%s]"
msgstr "ingen rpm filer fundet fra [%s]"

#: ../urpm.pm:1642
#, c-format
msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr "henter kilde-hdlist (eller -syntese) for \"%s\"..."

#: ../urpm.pm:1661
#, c-format
msgid "found probed hdlist (or synthesis) as %s"
msgstr "fandt undersøgte hdlist (eller syntese) for \"%s\"..."

#: ../urpm.pm:1697
#, c-format
msgid "computing md5sum of retrieved source hdlist (or synthesis)"
msgstr "beregner md5sum på hentet kilde-hdlist (eller -syntese)"

#: ../urpm.pm:1699
#, c-format
msgid "md5sum mismatch"
msgstr "md5sum: passer ikke"

#: ../urpm.pm:1780
#, c-format
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr "hentning af kilde-hdlist (eller -syntese) mislykkedes"

#: ../urpm.pm:1787
#, c-format
msgid "no hdlist file found for medium \"%s\""
msgstr "ingen hdlist-fil fundet for medie \"%s\""

#: ../urpm.pm:1798 ../urpm.pm:1850
#, c-format
msgid "file [%s] already used in the same medium \"%s\""
msgstr "fil [%s] er allerede brugt på det samme medie \"%s\""

#: ../urpm.pm:1834
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "kunne ikke fortolke hdlist-filen \"%s\""

#: ../urpm.pm:1874
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "kunne ikke skrive listefil for \"%s\""

#: ../urpm.pm:1881
#, c-format
msgid "writing list file for medium \"%s\""
msgstr "skriver liste-fil for medie \"%s\""

#: ../urpm.pm:1883
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "ingenting skrevet i listefil for \"%s\""

#: ../urpm.pm:1896
#, c-format
msgid "examining pubkey file of \"%s\"..."
msgstr "undersøger pubkey-fil for '%s'"

#: ../urpm.pm:1903
#, c-format
msgid "...imported key %s from pubkey file of \"%s\""
msgstr "...importeret nøgle %s fra pubkey-fil for \"%s\""

#: ../urpm.pm:1906
#, c-format
msgid "unable to import pubkey file of \"%s\""
msgstr "kunne ikke importere pubkey-fil for \"%s\""

#: ../urpm.pm:1972
#, c-format
msgid "reading headers from medium \"%s\""
msgstr "læser hoveder fra medium \"%s\""

#: ../urpm.pm:1977
#, c-format
msgid "building hdlist [%s]"
msgstr "bygger hdlist [%s]"

#: ../urpm.pm:1989 ../urpm.pm:2018 ../urpmi:369
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "byggede hdlist syntese fil for medie \"%s\""

#: ../urpm.pm:2038
#, c-format
msgid "found %d headers in cache"
msgstr "fandt %d hoveder i hurtiglager"

#: ../urpm.pm:2042
#, c-format
msgid "removing %d obsolete headers in cache"
msgstr "fjerner %d forældede hoveder i hurtiglager"

#: ../urpm.pm:2212
#, c-format
msgid "mounting %s"
msgstr "monterer %s"

#: ../urpm.pm:2225
#, c-format
msgid "unmounting %s"
msgstr "afmonterer %s"

#: ../urpm.pm:2247
#, c-format
msgid "relocated %s entries in depslist"
msgstr "omflyttede %s indgange i depsliste"

#: ../urpm.pm:2248
#, c-format
msgid "no entries relocated in depslist"
msgstr "ingen indgange omflyttede i depsliste"

#: ../urpm.pm:2261
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "ugyldigt rpm-filnavn [%s]"

#: ../urpm.pm:2267
#, c-format
msgid "retrieving rpm file [%s] ..."
msgstr "henter rpm-fil [%s]..."

#: ../urpm.pm:2274 ../urpm.pm:3117
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "kunne ikke nå rpm fil [%s]"

#: ../urpm.pm:2279
#, c-format
msgid "unable to register rpm file"
msgstr "kunne ikke registrere rpm-fil"

#: ../urpm.pm:2282
#, c-format
msgid "error registering local packages"
msgstr "fejl ved registrering af lokale pakker"

#: ../urpm.pm:2383
#, c-format
msgid "no package named %s"
msgstr "ingen pakke kaldet %s"

#: ../urpm.pm:2386 ../urpme:99
#, c-format
msgid "The following packages contain %s: %s"
msgstr "Følgende pakker indeholder %s: %s"

#: ../urpm.pm:2578 ../urpm.pm:2622 ../urpm.pm:2648
#, c-format
msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr "der er flere pakker med samme rpm-filnavn \"%s\""

#: ../urpm.pm:2633
#, c-format
msgid "unable to correctly parse [%s] on value \"%s\""
msgstr "kunne ikke fortolke [%s] korrekt ved værdi \"%s\""

#: ../urpm.pm:2660
#, c-format
msgid ""
"medium \"%s\" uses an invalid list file:\n"
"  mirror is probably not up-to-date, trying to use alternate method"
msgstr ""
"medie \"%s\" bruger en ugyldig listefil:\n"
"  spejlet er nok ikke opdateret, prøver at bruge en anden metode"

#: ../urpm.pm:2664
#, c-format
msgid "medium \"%s\" does not define any location for rpm files"
msgstr "medie \"%s\" definerer ikke noget sted for rpm-filer"

#: ../urpm.pm:2676
#, c-format
msgid "package %s is not found."
msgstr "pakke %s er ikke fundet."

#: ../urpm.pm:2716 ../urpm.pm:2731 ../urpm.pm:2755 ../urpm.pm:2770
#, c-format
msgid "urpmi database locked"
msgstr "urpmi-database låst"

#: ../urpm.pm:2822 ../urpm.pm:2825 ../urpm.pm:2855
#, c-format
msgid "medium \"%s\" is not selected"
msgstr "medie \"%s\" er ikke valgt"

#: ../urpm.pm:2851
#, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "kunne ikke læse rpm-fil [%s] fra medie \"%s\""

#: ../urpm.pm:2859
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "inkonsistent medie \"%s\" mærket udskifteligt, men er det ikke"

#: ../urpm.pm:2872
#, c-format
msgid "unable to access medium \"%s\""
msgstr "kunne ikke nå medie \"%s\""

#: ../urpm.pm:2933
#, c-format
msgid "malformed input: [%s]"
msgstr "misdannet inddata: [%s]"

#: ../urpm.pm:2940
#, c-format
msgid "retrieving rpm files from medium \"%s\"..."
msgstr "henter rpm-filer fra medie '%s'..."

#: ../urpm.pm:3018 ../urpmi:694
#, c-format
msgid "Preparing..."
msgstr "Forbereder..."

#: ../urpm.pm:3049
#, c-format
msgid "using process %d for executing transaction"
msgstr "bruger proces %d for at udføre transaktion"

#: ../urpm.pm:3079
#, c-format
msgid ""
"created transaction for installing on %s (remove=%d, install=%d, upgrade=%d)"
msgstr ""
"oprettede transaktion for installering på %s (fjern=%d, installér=%d, "
"opgradér=%d)"

#: ../urpm.pm:3082
#, c-format
msgid "unable to create transaction"
msgstr "kan ikke oprette transaktion"

#: ../urpm.pm:3090
#, c-format
msgid "removing package %s"
msgstr "fjerner pakke %s"

#: ../urpm.pm:3092
#, c-format
msgid "unable to remove package %s"
msgstr "kan ikke fjerne pakke %s"

#: ../urpm.pm:3102
#, c-format
msgid "adding package %s (id=%d, eid=%d, update=%d, file=%s)"
msgstr "tilføjer pakke %s (id=%d, eid=%d, opdatering=%d, fil=%s)"

#: ../urpm.pm:3105
#, c-format
msgid "unable to install package %s"
msgstr "kunne ikke installere pakke %s"

#: ../urpm.pm:3304 ../urpm.pm:3335
#, c-format
msgid "due to missing %s"
msgstr "grundet manglende %s"

#: ../urpm.pm:3305 ../urpm.pm:3333
#, c-format
msgid "due to unsatisfied %s"
msgstr "grundet uopfyldt %s"

#: ../urpm.pm:3306
#, c-format
msgid "trying to promote %s"
msgstr "prøver at fremme %s"

#: ../urpm.pm:3307
#, c-format
msgid "in order to keep %s"
msgstr "for at kunne beholde %s"

#: ../urpm.pm:3328
#, c-format
msgid "in order to install %s"
msgstr "for at kunne installere %s"

#: ../urpm.pm:3340
#, c-format
msgid "due to conflicts with %s"
msgstr "grundet modstrid med %s"

#: ../urpm.pm:3342
#, c-format
msgid "unrequested"
msgstr "ikke ønsket"

#: ../urpm.pm:3358
#, c-format
msgid "Invalid signature (%s)"
msgstr "Ugyldig signatur (%s)"

#: ../urpm.pm:3385
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Ugyldig nøgle-id (%s)"

#: ../urpm.pm:3387
#, c-format
msgid "Missing signature (%s)"
msgstr "Manglende signatur (%s)"

#: ../urpme:38
#, c-format
msgid ""
"urpme version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpmi version %s\n"
"Ophavsret © 1999, 2000, 2001, 2002 MandrakeSoft.\n"
"Dette er frit programmel og kan redistribueres under vilkårene for GNU GPL.\n"
"\n"
"brug:\n"

#: ../urpme:43 ../urpmf:31 ../urpmi:78 ../urpmi.addmedia:53
#: ../urpmi.removemedia:36 ../urpmi.update:62 ../urpmq:40
#, c-format
msgid "  --help         - print this help message.\n"
msgstr "  --help         - udskriv denne hjælpebesked.\n"

#: ../urpme:44 ../urpmi:84
#, c-format
msgid "  --auto         - automatically select a package in choices.\n"
msgstr "  --auto         - vælg automatisk en pakke ved valg.\n"

#: ../urpme:45 ../urpmi:123
#, c-format
msgid ""
"  --test         - verify if the installation can be achieved correctly.\n"
msgstr "  --test         - afprøv om installationen kan udføres korrekt.\n"

#: ../urpme:46 ../urpmi:98 ../urpmq:60
#, c-format
msgid ""
"  --force        - force invocation even if some packages do not exist.\n"
msgstr ""
"  --force        - gennemfør kald selv om nogen pakker ikke eksisterer.\n"

#: ../urpme:47 ../urpmi:103 ../urpmq:61
#, c-format
msgid "  --parallel     - distributed urpmi accross machines of alias.\n"
msgstr "  --parallel     - distribueret urpmi over maskiner med alias.\n"

#: ../urpme:48 ../urpmi:104
#, c-format
msgid "  --root         - use another root for rpm installation.\n"
msgstr "  --root         - brug en anden root for rpm-installation.\n"

#: ../urpme:49
#, c-format
msgid ""
"  --use-distrib  - configure urpmi on the fly from a distrib tree, useful\n"
"                   to (un)install a chroot with --root option.\n"
msgstr ""
"  --use-distrib  - konfigurér urpmi løbende fra et distrib træ, "
"nyttigt               til at (af)installere en chroot med root-tilvalget.\n"

#: ../urpme:51 ../urpmi:132 ../urpmq:73
#, c-format
msgid "  -v             - verbose mode.\n"
msgstr "  -v             - udførlig tilstand.\n"

#: ../urpme:52
#, c-format
msgid "  -a             - select all packages matching expression.\n"
msgstr "  -a             - vælg alle pakker matchende udtryk.\n"

#: ../urpme:71
#, c-format
msgid "urpme: unknown option \"-%s\", check usage with --help\n"
msgstr "urpme: ukendt parameter \"-%s\", tjek brug med --help\n"

#: ../urpme:94
#, c-format
msgid "unknown packages"
msgstr "ukendte pakker"

#: ../urpme:94
#, c-format
msgid "unknown package"
msgstr "ukendt pakke"

#: ../urpme:104
#, c-format
msgid "removing package %s will break your system"
msgstr "fjernelse af pakke %s vil skade dit system"

#: ../urpme:106
#, c-format
msgid "Nothing to remove"
msgstr "Ingenting at fjerne"

#: ../urpme:110
#, c-format
msgid "Checking to remove the following packages"
msgstr "Tjekker for at fjerne de følgende pakker"

#: ../urpme:117
#, c-format
msgid "To satisfy dependencies, the following packages will be removed (%d MB)"
msgstr ""
"For at tilfredsstille afhængigheder vil de følgende pakker blive fjernet (%d "
"Mb)"

#: ../urpme:119 ../urpmi:485 ../urpmi:640
#, c-format
msgid " (y/N) "
msgstr " (j/N) "

#: ../urpme:122 ../urpmi:683
#, c-format
msgid "removing %s"
msgstr "fjerner %s"

#: ../urpme:126
#, c-format
msgid "Removing failed"
msgstr "Fjernelse mislykkedes"

#: ../urpme:155 ../urpmi:878
#, c-format
msgid "Sorry, bad choice, try again\n"
msgstr "Undskyld, dårligt valg, prøv igen\n"

#: ../urpmf:26
#, c-format
msgid ""
"urpmf version %s\n"
"Copyright (C) 2002 MandrakeSoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpmf version %s\n"
"Ophavsret © 2002 MandrakeSoft.\n"
"Dette er frit programmel og kan redistribueres under vilkårene for GNU GPL.\n"
"\n"
"brug:\n"

#: ../urpmf:32 ../urpmi:79 ../urpmq:41
#, c-format
msgid "  --update       - use only update media.\n"
msgstr "  --update       - brug kun opdateringsmedie.\n"

#: ../urpmf:33 ../urpmi:80 ../urpmq:42
#, c-format
msgid "  --media        - use only the given media, separated by comma.\n"
msgstr "  --media        - brug kun de opgivne medier, adskilt med komma.\n"

#: ../urpmf:34 ../urpmi:81 ../urpmq:43
#, c-format
msgid "  --excludemedia - do not use the given media, separated by comma.\n"
msgstr "  --excludemedia - brug ikke de opgivne medier, adskilt med komma.\n"

#: ../urpmf:35 ../urpmi:82 ../urpmq:44
#, c-format
msgid ""
"  --sortmedia    - sort media according to substrings separated by comma.\n"
msgstr ""
"  --sortmedia    - sortér medier ifølge delstrenge, adskilt med komma.\n"

#: ../urpmf:36 ../urpmq:45
#, c-format
msgid "  --synthesis    - use the synthesis given instead of urpmi db.\n"
msgstr "  --synthesis    - brug synthesis angivet i stedet for urpmi-db.\n"

#: ../urpmf:37
#, c-format
msgid "  --verbose      - verbose mode.\n"
msgstr "  -v             - udførlig tilstand.\n"

#: ../urpmf:38
#, c-format
msgid ""
"  --quiet        - do not print tag name (default if no tag given on "
"command\n"
"                   line, incompatible with interactive mode).\n"
msgstr ""
"  --quiet         - skriv ikke mærkenavn (standard hvis intet mærke angivet "
"på\n"
"                    kommandolinjen, inkompatibel med interaktiv tilstand).\n"

#: ../urpmf:40
#, c-format
msgid "  --uniq         - do not print identical lines.\n"
msgstr "  --uniq          - udskriv ikke identiske linjer.\n"

#: ../urpmf:41
#, c-format
msgid "  --all          - print all tags.\n"
msgstr "  --all           - skriv alle mærker.\n"

#: ../urpmf:42
#, c-format
msgid "  --group        - print tag group: group.\n"
msgstr "  --group         - skriv mærkegruppe: gruppe.\n"

#: ../urpmf:43
#, c-format
msgid "  --size         - print tag size: size.\n"
msgstr "  --size          - skriv mærke-størrelse: størrelse.\n"

#: ../urpmf:44
#, c-format
msgid "  --epoch        - print tag epoch: epoch.\n"
msgstr "  --size          - skriv mærke-størrelse: størrelse.\n"

#: ../urpmf:45
#, c-format
msgid "  --summary      - print tag summary: summary.\n"
msgstr "  --summary       - skriv mærke-resumé: resumé.\n"

#: ../urpmf:46
#, c-format
msgid "  --description  - print tag description: description.\n"
msgstr "  --description   - skriv mærke-beskrivelse: beskrivelse.\n"

#: ../urpmf:47
#, c-format
msgid "  --sourcerpm    - print tag sourcerpm: source rpm.\n"
msgstr "  --sourcerpm     - skriv mærke for kilde-rpm: kilde-rpm.\n"

#: ../urpmf:48
#, c-format
msgid "  --packager     - print tag packager: packager.\n"
msgstr "  --packager      - skriv mærke-pakker: pakker.\n"

#: ../urpmf:49
#, c-format
msgid "  --buildhost    - print tag buildhost: build host.\n"
msgstr "  --buildhost     - skriv mærke-byggevært: byggevært.\n"

#: ../urpmf:50
#, c-format
msgid "  --url          - print tag url: url.\n"
msgstr "  --url           - skriv mærke-url: url.\n"

#: ../urpmf:51
#, c-format
msgid "  --provides     - print tag provides: all provides.\n"
msgstr "  --provides      - skriv mærke-tilbud: alle tilbud.\n"

#: ../urpmf:52
#, c-format
msgid "  --requires     - print tag requires: all requires.\n"
msgstr "  --requires      - skriv mærke-krav: alle krav.\n"

#: ../urpmf:53
#, c-format
msgid "  --files        - print tag files: all files.\n"
msgstr "  --files         - skriv mærke-filer: alle filer.\n"

#: ../urpmf:54
#, c-format
msgid "  --conflicts    - print tag conflicts: all conflicts.\n"
msgstr "  --conflicts     - skriv mærke-konflikter: alle konflikter.\n"

#: ../urpmf:55
#, c-format
msgid "  --obsoletes    - print tag obsoletes: all obsoletes.\n"
msgstr "  --obsoletes     - skriv mærke-forældede: alle forældede.\n"

#: ../urpmf:56 ../urpmi:116 ../urpmq:70
#, c-format
msgid ""
"  --env          - use specific environment (typically a bug\n"
"                   report).\n"
msgstr "  --env          - brug specifikt miljø (typisk ved en fejlrapport).\n"

#: ../urpmf:58
#, c-format
msgid "  -i             - ignore case distinctions in every pattern.\n"
msgstr ""
"  -i             - ignorér forskel på store og små bogstaver i alle "
"mønstre.\n"

#: ../urpmf:59 ../urpmq:85
#, c-format
msgid "  -f             - print version, release and arch with name.\n"
msgstr "  -f             - udskriv version, udgave og arkitektur med navn.\n"

#: ../urpmf:60
#, c-format
msgid "  -e             - include perl code directly as perl -e.\n"
msgstr "  -e             - inkludér perl-kode direkte som perl -e.\n"

#: ../urpmf:61
#, c-format
msgid ""
"  -a             - binary AND operator, true if both expression are true.\n"
msgstr ""
"  -a             - binær OG-operator, sand hvis begge udtryk er sande.\n"

#: ../urpmf:62
#, c-format
msgid ""
"  -o             - binary OR operator, true if one expression is true.\n"
msgstr ""
"  -o             - binær ELLER-operator, sand hvis et udtryk er sandt.\n"

#: ../urpmf:63
#, c-format
msgid "  !              - unary NOT, true if expression is false.\n"
msgstr "  !              - negation, sand hvis udtryk er falsk.\n"

#: ../urpmf:64
#, c-format
msgid "  (              - left parenthesis to open group expression.\n"
msgstr "  (              - venstreparantes for at åbne gruppeudtryk.\n"

#: ../urpmf:65
#, c-format
msgid "  )              - right parenthesis to close group expression.\n"
msgstr "  (              - højreparantes for at lukke gruppeudtryk.\n"

#: ../urpmf:143
#, c-format
msgid ""
"callback is :\n"
"%s\n"
msgstr ""
"tilbagekald er :\n"
"%s\n"

#: ../urpmf:148 ../urpmi:263 ../urpmq:183
#, c-format
msgid "using specific environment on %s\n"
msgstr "bruger særligt miljø på %s\n"

#: ../urpmi:73
#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpmi version %s\n"
"Ophavsret © 1999, 2000, 2001, 2002 MandrakeSoft.\n"
"Dette er frit programmel og kan redistribueres under vilkårene for GNU GPL.\n"
"\n"
"brug:\n"

#: ../urpmi:83
#, c-format
msgid "  --synthesis    - use the given synthesis instead of urpmi db.\n"
msgstr "  --synthesis    - brug synthesis angivet i stedet for urpmi-db.\n"

#: ../urpmi:85 ../urpmq:46
#, c-format
msgid ""
"  --auto-select  - automatically select packages to upgrade the system.\n"
msgstr ""
"  --auto-select  - vælg automatisk pakker for opgradering af systemet.\n"

#: ../urpmi:86
#, c-format
msgid ""
"  --no-uninstall - never ask to uninstall a package, abort the "
"installation.\n"
msgstr ""
"  --no-uninstall - spørg aldirig om afinstallering af en pakke, afbryd "
"installationen.\n"

#: ../urpmi:87 ../urpmq:48
#, c-format
msgid ""
"  --keep         - keep existing packages if possible, reject requested\n"
"                   packages that leads to remove.\n"
msgstr ""
"  --keep         - behold eksisterende pakker om muligt, afvis anmodede\n"
"                   pakker som fører til fjernelse.\n"

#: ../urpmi:89
#, c-format
msgid ""
"  --split-level  - split in small transaction if more than given packages\n"
"                   are going to be installed or upgraded,\n"
"                   default is %d.\n"
msgstr ""
"  --split-level  - opdél i lille transaktion hvis mere end givne pakker\n"
"                       skal installeres eller opgraderes,\n"
"                       standard er %d.\n"

#: ../urpmi:92
#, c-format
msgid "  --split-length - small transaction length, default is %d.\n"
msgstr "  --split-length - lille tansaktionslængde, standard er %d.\n"

#: ../urpmi:93 ../urpmq:47
#, c-format
msgid "  --fuzzy        - impose fuzzy search (same as -y).\n"
msgstr "  --fuzzy        - gennemfør søgning efter fuzzy (samme som -y).\n"

#: ../urpmi:94 ../urpmq:56
#, c-format
msgid "  --src          - next package is a source package (same as -s).\n"
msgstr "  --src          - næste pakke er en kildepakke (samme som -s).\n"

#: ../urpmi:95
#, c-format
msgid "  --install-src  - install only source package (no binaries).\n"
msgstr "  --install-src  - installér kun kildepakker (ingen binære).\n"

#: ../urpmi:96
#, c-format
msgid "  --clean        - remove rpm from cache before anything else.\n"
msgstr "  --clean        - fjern rpm fra cache før noget andet.\n"

#: ../urpmi:97
#, c-format
msgid "  --noclean      - keep rpm not used in cache.\n"
msgstr "  --noclean      - behold rpm ikke brugt i cache.\n"

#: ../urpmi:99
#, c-format
msgid ""
"  --allow-nodeps - allow asking user to install packages without\n"
"                   dependencies checking.\n"
msgstr ""
"  --allow-nodeps - tillad at spørge bruger om installering af pakker uden "
"kontrol af\n"
"                   afhængigheder.\n"

#: ../urpmi:101
#, c-format
msgid ""
"  --allow-force  - allow asking user to install packages without\n"
"                   dependencies checking and integrity.\n"
msgstr ""
"  --allow-force  - tillad at spørge bruger om installering af pakker\n"
"                   uden kontrol af afhængigheder og integritet.\n"

#: ../urpmi:105
#, c-format
msgid ""
"  --use-distrib  - configure urpmi on the fly from a distrib tree, useful\n"
"                   to install a chroot with --root option.\n"
msgstr ""
"  --use-distrib  - konfigurér urpmi løbende fra et distrib-træ, "
"nyttigt               til at installere en chroot med --root-tilvalget.\n"

#: ../urpmi:107 ../urpmi.addmedia:54 ../urpmi.update:63 ../urpmq:64
#, c-format
msgid "  --wget         - use wget to retrieve distant files.\n"
msgstr "  --wget         - brug wget til at hente eksterne filer.\n"

#: ../urpmi:108 ../urpmi.addmedia:55 ../urpmi.update:64 ../urpmq:65
#, c-format
msgid "  --curl         - use curl to retrieve distant files.\n"
msgstr "  --curl         - brug 'curl' til at hente retrieve eksterne filer.\n"

#: ../urpmi:109 ../urpmi.addmedia:56 ../urpmi.update:65
#, c-format
msgid "  --limit-rate   - limit the download speed.\n"
msgstr "  --limit-rate   - begræns hastighed på hentning.\n"

#: ../urpmi:110 ../urpmi.addmedia:57 ../urpmi.update:66 ../urpmq:66
#, c-format
msgid ""
"  --proxy        - use specified HTTP proxy, the port number is assumed\n"
"                   to be 1080 by default (format is <proxyhost[:port]>).\n"
msgstr ""
"  --proxy        - brug den angivne HTTP proxy, portnummeret antages at\n"
"                   være 1080 som standard (formatet er <proxyvært[:port]>).\n"

#: ../urpmi:112 ../urpmi.addmedia:59 ../urpmi.update:68 ../urpmq:68
#, c-format
msgid ""
"  --proxy-user   - specify user and password to use for proxy\n"
"                   authentication (format is <user:password>).\n"
msgstr ""
"  --proxy-user   - angiv bruger og adgangskode til brug for kontrol\n"
"                   af proxy (formatet er <bruger:adgangskode>).\n"

#: ../urpmi:114
#, c-format
msgid ""
"  --bug          - output a bug report in directory indicated by\n"
"                   next arg.\n"
msgstr ""
"  --bug          - udskriv en fejlrapport i et katalog angivet i næste\n"
"                   argument.\n"

#: ../urpmi:118
#, c-format
msgid "  --X            - use X interface.\n"
msgstr "  --X            - brug X-grænsesnit.\n"

#: ../urpmi:119
#, c-format
msgid ""
"  --best-output  - choose best interface according to the environment:\n"
"                   X or text mode.\n"
msgstr ""
"  --best-output  - vælg bedste grænsesnit svarende til miljøet:\n"
"                   X- eller tekst-udgave.\n"

#: ../urpmi:121
#, c-format
msgid ""
"  --verify-rpm   - verify rpm signature before installation\n"
"                   (--no-verify-rpm disable it, default is enabled).\n"
msgstr ""
"  --verify-rpm   - kontrollér rpm-signatur før installation.\n"
"                   (--no-verify-rpm deaktiverer det, standard er "
"aktiveret).\n"

#: ../urpmi:124
#, c-format
msgid "  --excludepath  - exclude path separated by comma.\n"
msgstr "  --excludepath  - udelukkelsessti adskilt med komma.\n"

#: ../urpmi:125
#, c-format
msgid "  --excludedocs  - exclude docs files.\n"
msgstr "  --excludedocs  - udelader docs-filer.\n"

#: ../urpmi:126 ../urpmq:76
#, c-format
msgid "  -a             - select all matches on command line.\n"
msgstr "  -a             - vælg alle træffere på kommandolinje.\n"

#: ../urpmi:127
#, c-format
msgid "  -p             - allow search in provides to find package.\n"
msgstr "  -p             - tillad søgning i 'provides' for at finde pakke.\n"

#: ../urpmi:128 ../urpmq:78
#, c-format
msgid "  -P             - do not search in provides to find package.\n"
msgstr "  -P             - søg ikke i 'provides' for at finde pakke.\n"

#: ../urpmi:129 ../urpmq:80
#, c-format
msgid "  -y             - impose fuzzy search (same as --fuzzy).\n"
msgstr "  -y             - gennemfør upræcis søgning (samme som --fuzzy).\n"

#: ../urpmi:130 ../urpmq:81
#, c-format
msgid "  -s             - next package is a source package (same as --src).\n"
msgstr "  -s             - næste pakke er en kildepakke (samme som --src).\n"

#: ../urpmi:131
#, c-format
msgid "  -q             - quiet mode.\n"
msgstr "  -q             - stille udgave.\n"

#: ../urpmi:133
#, c-format
msgid "  names or rpm files given on command line will be installed.\n"
msgstr ""
"  navne eller rpm-filer givne på kommandolinjen vil blive installeret.\n"

#: ../urpmi:189 ../urpmi:196 ../urpmi.addmedia:101 ../urpmi.addmedia:108
#: ../urpmi.update:45 ../urpmi.update:52 ../urpmq:130 ../urpmq:137
#, c-format
msgid "bad proxy declaration on command line\n"
msgstr "Forkert proxy-erklæring på kommandolinje\n"

#: ../urpmi:228
#, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr "urpmi: ukendt parameter \"-%s\", tjek brug med --help\n"

#: ../urpmi:248
#, c-format
msgid "What can be done with binary rpm files when using --install-src"
msgstr "Hvad der kan gøres med binære rpm-filer ved brug af --install-src"

#: ../urpmi:255
#, c-format
msgid ""
"Directory [%s] already exists, please use another directory for bug report "
"or delete it"
msgstr ""
"Kataloget [%s] eksisterer allerede, brug venligst et andet katalog til "
"fejlrapporten, eller slet det"

#: ../urpmi:255
#, c-format
msgid "Unable to create directory [%s] for bug report"
msgstr "kunne ikke oprette katalog [%s] til fejlrapport"

#: ../urpmi:274
#, c-format
msgid "Only superuser is allowed to install packages"
msgstr "Kun superbrugeren har lov til at installere pakker"

#: ../urpmi:410
#, c-format
msgid "One of the following packages is needed to install %s:"
msgstr "Der er brug for en af de følgende pakker for at installere %s:"

#: ../urpmi:411
#, c-format
msgid "One of the following packages is needed:"
msgstr "Der er brug for en af de følgende pakker:"

#: ../urpmi:418
#, c-format
msgid "What is your choice? (1-%d) "
msgstr "Hvad er dit valg? (1-%d) "

#: ../urpmi:428 ../urpmi:545
#, c-format
msgid "Package installation..."
msgstr "Pakkeinstallation..."

#: ../urpmi:428 ../urpmi:545
#, c-format
msgid "Initializing..."
msgstr "Initialiserer..."

#: ../urpmi:449
#, c-format
msgid ""
"Some package requested cannot be installed:\n"
"%s"
msgstr ""
"Nogen forespurgte pakker kan ikke installeres:\n"
"%s"

#: ../urpmi:454 ../urpmi:480
#, c-format
msgid "do you agree ?"
msgstr "Er du enig?"

#: ../urpmi:469
#, c-format
msgid ""
"The installation cannot continue because the following packages\n"
"have to be removed for others to be upgraded:\n"
"%s\n"
msgstr ""
"Installationen kan ikke fortsætte fordi de følgende pakker\n"
"skal fjernes for at andre kan opgraderes:\n"
"%s\n"

#: ../urpmi:475
#, c-format
msgid ""
"The following packages have to be removed for others to be upgraded:\n"
"%s"
msgstr ""
"De følgende pakker skal fjernes for at andre kan opgraderes:\n"
"%s"

#: ../urpmi:513 ../urpmi:522
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
"d MB)"
msgstr ""
"For at tilfredsstille afhængigheder vil de følgende pakker blive installeret "
"(%d Mb)"

#: ../urpmi:519
#, c-format
msgid ""
"You need to be root to install the following dependencies:\n"
"%s\n"
msgstr ""
"Du skal være root for at installere de følgende afhængigheder:\n"
"%s\n"

#: ../urpmi:540 ../urpmq:356
#, c-format
msgid "unable to get source packages, aborting"
msgstr "kan ikke hente kilde-pakker, afslutter med fejl"

#: ../urpmi:555
#, c-format
msgid "Please insert the medium named \"%s\" on device [%s]"
msgstr "Vær venlig at indsætte mediet med navnet %s i enhed [%s]"

#: ../urpmi:556
#, c-format