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
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20Initscripts%20-%20Migrating%20to%20git%20and%20regenerating%0A%20mdkconf.patch%20and%20further%20Mageia%20tweaks.&In-Reply-To=%3C4EA13E44.2020308%40colin.guthr.ie%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="004038.html">
<LINK REL="Next" HREF="004040.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.</H1>
<B>Colin Guthrie</B>
<A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20Initscripts%20-%20Migrating%20to%20git%20and%20regenerating%0A%20mdkconf.patch%20and%20further%20Mageia%20tweaks.&In-Reply-To=%3C4EA13E44.2020308%40colin.guthr.ie%3E"
TITLE="[Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.">mageia at colin.guthr.ie
</A><BR>
<I>Fri Oct 21 11:41:24 CEST 2011</I>
<P><UL>
<LI>Previous message: <A HREF="004038.html">[Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.
</A></li>
<LI>Next message: <A HREF="004040.html">[Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#4039">[ date ]</a>
<a href="thread.html#4039">[ thread ]</a>
<a href="subject.html#4039">[ subject ]</a>
<a href="author.html#4039">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>'Twas brillig, and Colin Guthrie at 21/10/11 10:33 did gyre and gimble:
><i> Hi,
</I>><i>
</I>><i> Just to try and keep our initscripts package vaguely manageable, I've
</I>><i> been playing with git repositories.
</I>
...snip...
><i> 1. <A HREF="git://git.fedorahosted.org/initscripts.git">git://git.fedorahosted.org/initscripts.git</A>
</I>><i> 2. <A HREF="git://git.mageia.org/initscripts-mdv">git://git.mageia.org/initscripts-mdv</A>
</I>><i> 3. <A HREF="git://git.mageia.org/initscripts">git://git.mageia.org/initscripts</A>
</I>><i>
</I>><i> I recommend adding the following to your ~/.gitconfig:
</I>><i>
</I>><i>
</I>><i> [url "<A HREF="git://git.mageia.org/">git://git.mageia.org/</A>"]
</I>><i> insteadof = mga:
</I>><i> [url "<A HREF="ssh://git.mageia.org/git/">ssh://git.mageia.org/git/</A>"]
</I>><i> pushInsteadof = mga:
</I>><i>
</I>><i>
</I>><i> This way you can do: "git clone mga:initscripts" or "git clone
</I>><i> mga:initscripts-mdv". Cloning will use the (lower overhead) git
</I>><i> protocol, whereas push will use SSH (provided you have SSH commit rights
</I>><i> of course).
</I>
Just a small followup for sysadmin team.
At first I didn't appreciate that there was an existing git repository.
I tried cloneing via <A HREF="git://">git://</A> and I got an empty repo so this was a
natural assumption.
However, as I needed to push, I switched to <A HREF="ssh://">ssh://</A> access. Much to my
surprise, this resulted in a fairly full repository!
I narrowed this down to:
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">root at valstar</A> ~]# ll /git/initscripts/{packed-refs,objects/pack/}
-rw-r----- 1 root mga-packagers-committers 43413 2011-05-23 12:28
/git/initscripts/packed-refs
total 14244
-r--r----- 1 root mga-packagers-committers 717508 2011-05-23 12:28
pack-71c1b5b73ef330fa10feb095966fdf3e01960f9b.idx
-r--r----- 1 root mga-packagers-committers 13862354 2011-05-23 12:29
pack-71c1b5b73ef330fa10feb095966fdf3e01960f9b.pack
i.e. no read permission on the packs.
I did chmod a+r to these files and all was fixed.
Now that there *was* a git repo here, I tried to work out where it came
from. It seems it's originally from git.mandriva.com, but this seems to
be no longer valid (or at least not listed on the web UI for mdv git).
It also seems to have come from the fedora repo originally anyway.
So I figured I could push on top of this OK without any --force, which I
duely did.
However, I somewhat stupidly used push --mirror, which ultimate deleted
some of the branches we had :s
Now I don't *think* any of those branches were ours anyway, but I'm
somewhat paranoid I overwrote something important (of course git won't
actually remove anything until a garbage collect so it's still currently
recoverable I believe).
Here is the full out put from my pushes.
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">colin at jimmy</A> initscripts (mga-9.25-patches)]$ git remote add mga
mga:initscripts
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">colin at jimmy</A> initscripts (mga-9.25-patches)]$ git push mga master
X11 forwarding request failed on channel 0
Counting objects: 3220, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (1025/1025), done.
Writing objects: 100% (3074/3074), 4.51 MiB | 147 KiB/s, done.
Total 3074 (delta 2236), reused 2818 (delta 2036)
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/master update
b013d82305519d442857bd87de17a32e68cabd5f->05d7d8b6ee43103a589c8a999d5d96bdcd06f519
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
To <A HREF="ssh://git.mageia.org/git/initscripts">ssh://git.mageia.org/git/initscripts</A>
b013d82..05d7d8b master -> master
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">colin at jimmy</A> initscripts (mga-9.25-patches)]$ git push --mirror mga
X11 forwarding request failed on channel 0
Counting objects: 2428, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (1140/1140), done.
Writing objects: 100% (2146/2146), 3.13 MiB | 216 KiB/s, done.
Total 2146 (delta 1343), reused 1592 (delta 992)
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/F10-branch update
210d0fb68b306c50a1e6a4a71cffb57519445d33->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/F11-branch update
3831984c8f379000a851fa2a949a4eb7fdd21b2b->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/F7-branch update
329556dcf89e0757d49160d9adbe40169571a5d2->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/F8-branch update
c60ac9fb617a28d6b4a33150b75fbf3d24e05ae4->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/F9-branch update
301dd44b3fadf1e97644ad462b1ee42043d2f5ef->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/FC3-branch update
20e2d4679678cf377362de4a62edc8a8e38cf361->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/FC4-branch update
431a471e479eb6dffc43a3bb785bf2711627fc95->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/FC5-branch update
28a82ee5ae1f9111d19350a8d342c1fb1e3ed4e6->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/FC6-branch update
aa8cd70238da8c40db7566e0916aa246bd37abc1->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/SEREL update
8a26159ec668893c845d5dcbec48f509b2dacc6c->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-3_0E-branch update
a1d18e8bcb70eb2df53d690cb64138e60cdbb506->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-3_0E-rhgb-branch update
6fd5fcccc3aa5fdbdbcab8f7425f87d72ef1a3b4->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-7_0-branch update
475ece0115c304cb546dd789a68e1927498f1cf5->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-7_1-branch update
e61bc31e8fd37cce1b85aaccd08da8e65a4e377b->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-7_2-branch update
27465d15fbdad4142c15b0cd3fbe7de1cb4c9dbd->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-7_3-branch update
c222a1c2a46c42c12b5d898091962122375c9c42->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-8_0-branch update
826c2b5786a35ba669b9b3f508817c0b64ddc908->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-9-branch update
4630ba6b433cb9bbba55d6c942f104535f9c0e0b->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-FC1-branch update
516fdb9ffde8199d66212241b67956ae21b76bea->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/initscripts-FC2-branch update
f3d2594413456574a0269813bdd351d6b0754924->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/origin update
6b5d4bfa26c45eb4351aad41c66d2ab0907cb304->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/redhat update
578f0bb804e9d26881b3aa2349ff418235d0931b->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/rhel4-branch update
b491299da0d0418f0a20ea1d654cfbad50795676->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/rhel5-branch update
d73f150be526ecdbb73ccee9427bff03858191fd->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/unstable update
b5da33084c723b7a182d6724d9a8855a16c0b55d->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/upstart-0.5.0-branch update
f6fcc6d15856ddd158c5f1956a839b71c02c9275->0000000000000000000000000000000000000000
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/mga-9.21-mdkconf update
0000000000000000000000000000000000000000->2f3bfc05b8fe3305adc49e987a5b6b3946a64c62
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/mga-9.25-branding update
0000000000000000000000000000000000000000->ee73ce60c117dec2dfd5a9d9715fc253f8267f20
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/mga-9.25-mdkconf update
0000000000000000000000000000000000000000->ee8a3eef2876b32b6a9cad86b79f1b3ceab53c36
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/mga-9.25-patches update
0000000000000000000000000000000000000000->8cd1bf5b9d072063c1e66b1acbc157dbb5796b50
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.mailinglist is not set so no email will be sent
remote: *** for refs/heads/mga-patch update
0000000000000000000000000000000000000000->352669881edb09794522df4517147cac27b099b6
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/foo/master
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/foo/mga-9.21-mdkconf
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/foo/mga-9.25-branding
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/foo/mga-9.25-mdkconf
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/foo/mga-9.25-patches
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/foo/mga-patch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/mga/master
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F10-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F11-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F12-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F13-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F14-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F15-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F7-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F8-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/F9-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/FC3-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/FC4-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/FC5-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/FC6-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/HEAD
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/SEREL
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-3_0E-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-3_0E-rhgb-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-7_0-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-7_1-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-7_2-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-7_3-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-8_0-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-9-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-FC1-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/initscripts-FC2-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/master
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/origin
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/redhat
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/rhel4-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/rhel5-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/rhel6-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/systemd-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/origin/unstable
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/origin/upstart-0.6.0-branch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/personal/master
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/personal/mga-9.21-mdkconf
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/personal/mga-9.25-branding
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/personal/mga-9.25-mdkconf
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch,
refs/remotes/personal/mga-9.25-patches
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** Push-update of tracking branch, refs/remotes/personal/mga-patch
remote: *** - no email generated.
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-7.93.35-1.el4 update
0000000000000000000000000000000000000000->ce378ca0bfceee7259971c4f1fdce75193bdfb88
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.30-1 update
0000000000000000000000000000000000000000->f603acd9c33388b68829868107c5ef6ef9ba14fe
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.31-1 update
0000000000000000000000000000000000000000->de2c70db17abab7571fde5f262170ead581c14cc
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.32-1 update
0000000000000000000000000000000000000000->0c4b1074b2c4d1f199d77d444dd79910417bdefb
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.33-1 update
0000000000000000000000000000000000000000->28ee976d397c9a3bdb0ee717d69e4237e44e1d83
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.34-1 update
0000000000000000000000000000000000000000->f2b2a5f36dd5c38b0c9225f17ea071b688e0783a
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.35-1 update
0000000000000000000000000000000000000000->be4560ebcc550f3e0f5a26a0e871a405e6f93f3e
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.36-1 update
0000000000000000000000000000000000000000->9345526732a1217052dbd46e78a7459284685bdf
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.37-1 update
0000000000000000000000000000000000000000->bcd0ee6523f379355f72eb13059997ecbb32b2e8
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.45.38-1 update
0000000000000000000000000000000000000000->8abff88cc528325119f51e0741530e2046d0b0a1
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.95.1-1 update
0000000000000000000000000000000000000000->5d055662bb1081c01ef6a4a8f7e5584eae647a39
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.96-1 update
0000000000000000000000000000000000000000->e0c21525020fc72418e3e7909c4fe0a2f43d5086
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.97-1 update
0000000000000000000000000000000000000000->3df5791be64e294dd258a40848e4d0cdcb589bae
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.98-1 update
0000000000000000000000000000000000000000->62f8083b83b77aff209d6fa99bfa799f29e6ead9
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-8.99-1 update
0000000000000000000000000000000000000000->ce74992ae00955791bcf46bb78a160923a2fdddb
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.00-1 update
0000000000000000000000000000000000000000->ee5cbf4496c8ad6cadce7a6912b550ca64ecb2f5
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.01-1 update
0000000000000000000000000000000000000000->7fe2efc5f47e2fa1385e05a7c034eb6a43f51ca2
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.02-1 update
0000000000000000000000000000000000000000->ca0e0cb5be7f4499bf51a7426efb72591dd7e6f7
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.02.1-1 update
0000000000000000000000000000000000000000->b142c3c23821baff889ec117613264d9b6d9a3aa
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.02.2-1 update
0000000000000000000000000000000000000000->c7865ce4c5f58ddae52f98cf6aedbbb58177aeaf
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03-1 update
0000000000000000000000000000000000000000->026d924d7ab767e45a22976b842cb9400bb6342f
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.1-1 update
0000000000000000000000000000000000000000->d3e97b72155c4d065d79fd8bb8fe9096c47c8909
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.10-1 update
0000000000000000000000000000000000000000->6fdb2eb7ce44894835a9a6627a70a134f9f6b604
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.11-1 update
0000000000000000000000000000000000000000->2563230a26616e01151c058a9941b329b040a4e6
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.12-1 update
0000000000000000000000000000000000000000->6852ba33655c790c60eaf3d986adc844018d82e1
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.13-1 update
0000000000000000000000000000000000000000->99f7566ec88fc251068b238b862832b2bc89a2dd
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.14-1 update
0000000000000000000000000000000000000000->845ddfe943c206c9911e9f3963bd3f07f287c594
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.15-1 update
0000000000000000000000000000000000000000->1e990e8bb6137c9be599827ef9173c23adac6012
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.16-1 update
0000000000000000000000000000000000000000->e3e35e55761a04da31113ac6dad3a0f66f60d54b
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.17-1 update
0000000000000000000000000000000000000000->d7b8bcdcfeed0cf32864a0a1cf1dcd1ea788f13d
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.18-1 update
0000000000000000000000000000000000000000->13cc26f29fd22315eafb29a5cd409395949c9d78
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.19-1 update
0000000000000000000000000000000000000000->2b40c17c7a98d4b23e74a638c42f28912836159a
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.2-1 update
0000000000000000000000000000000000000000->0f1b84fd63365175a2f55d7c37bcc297f5407d5a
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.20-1 update
0000000000000000000000000000000000000000->57443bcf45694e55d05b5a3cf172f50a78f044b2
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.21-1 update
0000000000000000000000000000000000000000->b997f9960e27d4a49b129c7f4b0effd6f5689fe9
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.22-1 update
0000000000000000000000000000000000000000->f814dbfab8ba72489887fe28067df9d90310d04b
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.23-1 update
0000000000000000000000000000000000000000->c41c0d15ae28f845436f2ce43642d6c016d2c4db
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.24-1 update
0000000000000000000000000000000000000000->829b97e63b2ad2f865a48e21dd96198350627fcc
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.25-1 update
0000000000000000000000000000000000000000->457d13bf2080ffd6617fb239292be532f3c04865
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.26-1 update
0000000000000000000000000000000000000000->6012664b67c66dcd54a6c0b7828b1eb243aa4547
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.27-1 update
0000000000000000000000000000000000000000->67efaf4ff3435be77cc651e8566e896eeb8dd7dc
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.3-1 update
0000000000000000000000000000000000000000->15f4c37acc0a84a74e2ce1e6e78eff53b073f5b6
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.4-1 update
0000000000000000000000000000000000000000->d6ca60a717a941f76517069f4f999746ecc143f3
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.5-1 update
0000000000000000000000000000000000000000->7f76574f0a2e4b6af21f55ee144937778bef70be
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.6-1 update
0000000000000000000000000000000000000000->2c1a7782422d38cab4dfbac219094e24f06f40f4
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.7-1 update
0000000000000000000000000000000000000000->cb24e6d0cdae921dab1286daab0f0e0e13127a6a
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.7-1.1 update
0000000000000000000000000000000000000000->f307253a9911c78fa41b6c43d5fef4f3219d77b8
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.7-1.2 update
0000000000000000000000000000000000000000->d89d65a15acb818ea4171dea4ea05ab63859e91a
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.8-1 update
0000000000000000000000000000000000000000->b429ed114f86abf0fa069f8aadabf7a63487b120
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.03.9-1 update
0000000000000000000000000000000000000000->66616251e3339e6cb5b3a14997e46208bc7e0a41
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.04-1 update
0000000000000000000000000000000000000000->460cb7b58dd8761a1daa5e3f8a6ed22e75c91979
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.05-1 update
0000000000000000000000000000000000000000->e46cb9cba57c4cf3619653c85e595fdc292aec7f
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.06-1 update
0000000000000000000000000000000000000000->8f2e2011d0df643e7ff1cf0550fa4b635f577096
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.07-1 update
0000000000000000000000000000000000000000->09deda37d9b3485593037e0c0548a101c44dc51b
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.08-1 update
0000000000000000000000000000000000000000->d7dcbe0db34925d440d9c98f3d0c5034c3ebef43
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.09-1 update
0000000000000000000000000000000000000000->e065814f37b602b8cf68871a9e723a0face10f68
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.10-1 update
0000000000000000000000000000000000000000->7a9d6d1fd3b1c76cdec95f9b8e0bd94dc1c201e4
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.11-1 update
0000000000000000000000000000000000000000->f4c40e5cd271db44ee3cce6ac33c8281c3aebb25
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.12-1 update
0000000000000000000000000000000000000000->9590b37661feb94bda28ecd52f69a4e6a22cb8c0
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.12-1.1 update
0000000000000000000000000000000000000000->b883c50687b84d354a517f8fd73dcfb382c8debd
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.12-1.2 update
0000000000000000000000000000000000000000->e34630601c50ab88f163af7802fb5ab1edc7e0c3
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.12.1-1 update
0000000000000000000000000000000000000000->10929dc6e832a60c611e1918ead4f93349b2bde8
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.13-1 update
0000000000000000000000000000000000000000->7911818b6f8fa417fb0e97825552c639fa3369e5
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.14-1 update
0000000000000000000000000000000000000000->89daa960e557d8de31bc9fdd35ed2b3479fd0f84
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.15-1 update
0000000000000000000000000000000000000000->5c141d8f46631561978f2875bc386f1233d20b7d
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.15-1.1 update
0000000000000000000000000000000000000000->f8534d57495b980362ceac6be81acff8e198b503
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.15.0.1.systemd-1 update
0000000000000000000000000000000000000000->63aa56b367dfee944484897060fab4bad858843d
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.16-1 update
0000000000000000000000000000000000000000->910aaf8747e3523c6cdc0ce840dec3e647a9e939
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.16.0.1.systemd-1 update
0000000000000000000000000000000000000000->9972e43b38c3b16d37745aaed99b8fa777b8c021
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.16.0.2.systemd-1 update
0000000000000000000000000000000000000000->d70dbcc70849745e419d2cd940b9d64ed39da54d
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.16.0.3.systemd-1 update
0000000000000000000000000000000000000000->5aa91f199a417c68f8d3df73858a3b27d4fe0de5
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.16.0.4.systemd-1 update
0000000000000000000000000000000000000000->fb11015d9eeb8dcb8a46bb76157a27da834ca61c
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.17-1 update
0000000000000000000000000000000000000000->16783bfb86f1407d7e7f8bd71c1be5e12a9b744a
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.18-1 update
0000000000000000000000000000000000000000->defb2f2e0b4957f8cd472c46ebc5198cdf32b169
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.19-1 update
0000000000000000000000000000000000000000->f1a9a73edf34dbc79c13382e4a861fd7b50b5137
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.20-1 update
0000000000000000000000000000000000000000->bba65128a39204d7c19515d448a6482aeb9f807e
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.20.1-1 update
0000000000000000000000000000000000000000->59a61684387d3c86d135382e828ee0b3dadad902
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.20.2-1 update
0000000000000000000000000000000000000000->1443c37c84322641f80d9b05054d0d881f380fc2
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.21-1 update
0000000000000000000000000000000000000000->e98ee64ae97073374bfa18053ac41a60d3c4bd29
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.21.systemd-1 update
0000000000000000000000000000000000000000->460d135a3ab814803781ede20381149d0f360762
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.22-1 update
0000000000000000000000000000000000000000->331cf03313b84aea4c5e5edc8a93b3639db39239
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.23-1 update
0000000000000000000000000000000000000000->5b501baac3f81caafd8124f8545ce593d6cfe723
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.24-1 update
0000000000000000000000000000000000000000->596bbab0fc9145b2182477c98eff39c23dbbafbb
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.25-1 update
0000000000000000000000000000000000000000->beee363c4afa41e473facb843a8606facb9d67b8
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.26-1 update
0000000000000000000000000000000000000000->f8566249773177d5d317cd56e3b3a5dacb108552
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.27-1 update
0000000000000000000000000000000000000000->8f934c781d6f2889ce924e96837ddc1086c30f45
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.28-1 update
0000000000000000000000000000000000000000->6305c27f16d1babfcecbcad887c50d6bed059d58
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.29-1 update
0000000000000000000000000000000000000000->973aeceef7b422c08160fd43ceb30c98d61086ab
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.30-1 update
0000000000000000000000000000000000000000->e4a65c0900b9f5ca3e2f5f353aa92d11961372e4
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
remote: *** hooks.announcelist is not set so no email will be sent
remote: *** for refs/tags/initscripts-9.31-1 update
0000000000000000000000000000000000000000->44ccc90e15f1ce034d47ab367dbec39967036f70
remote: sendmail: fatal: colin(5008): No recipient addresses found in
message header
To <A HREF="ssh://git.mageia.org/git/initscripts">ssh://git.mageia.org/git/initscripts</A>
- [deleted] F10-branch
- [deleted] F11-branch
- [deleted] F7-branch
- [deleted] F8-branch
- [deleted] F9-branch
- [deleted] FC3-branch
- [deleted] FC4-branch
- [deleted] FC5-branch
- [deleted] FC6-branch
- [deleted] SEREL
- [deleted] initscripts-3_0E-branch
- [deleted] initscripts-3_0E-rhgb-branch
- [deleted] initscripts-7_0-branch
- [deleted] initscripts-7_1-branch
- [deleted] initscripts-7_2-branch
- [deleted] initscripts-7_3-branch
- [deleted] initscripts-8_0-branch
- [deleted] initscripts-9-branch
- [deleted] initscripts-FC1-branch
- [deleted] initscripts-FC2-branch
- [deleted] origin
- [deleted] redhat
- [deleted] rhel4-branch
- [deleted] rhel5-branch
- [deleted] unstable
- [deleted] upstart-0.5.0-branch
* [new branch] mga-9.21-mdkconf -> mga-9.21-mdkconf
* [new branch] mga-9.25-branding -> mga-9.25-branding
* [new branch] mga-9.25-mdkconf -> mga-9.25-mdkconf
* [new branch] mga-9.25-patches -> mga-9.25-patches
* [new branch] mga-patch -> mga-patch
* [new branch] foo/master -> foo/master
* [new branch] foo/mga-9.21-mdkconf -> foo/mga-9.21-mdkconf
* [new branch] foo/mga-9.25-branding -> foo/mga-9.25-branding
* [new branch] foo/mga-9.25-mdkconf -> foo/mga-9.25-mdkconf
* [new branch] foo/mga-9.25-patches -> foo/mga-9.25-patches
* [new branch] foo/mga-patch -> foo/mga-patch
* [new branch] mga/master -> mga/master
* [new branch] origin/F10-branch -> origin/F10-branch
* [new branch] origin/F11-branch -> origin/F11-branch
* [new branch] origin/F12-branch -> origin/F12-branch
* [new branch] origin/F13-branch -> origin/F13-branch
* [new branch] origin/F14-branch -> origin/F14-branch
* [new branch] origin/F15-branch -> origin/F15-branch
* [new branch] origin/F7-branch -> origin/F7-branch
* [new branch] origin/F8-branch -> origin/F8-branch
* [new branch] origin/F9-branch -> origin/F9-branch
* [new branch] origin/FC3-branch -> origin/FC3-branch
* [new branch] origin/FC4-branch -> origin/FC4-branch
* [new branch] origin/FC5-branch -> origin/FC5-branch
* [new branch] origin/FC6-branch -> origin/FC6-branch
* [new branch] origin/HEAD -> origin/HEAD
* [new branch] origin/SEREL -> origin/SEREL
* [new branch] origin/initscripts-3_0E-branch ->
origin/initscripts-3_0E-branch
* [new branch] origin/initscripts-3_0E-rhgb-branch ->
origin/initscripts-3_0E-rhgb-branch
* [new branch] origin/initscripts-7_0-branch ->
origin/initscripts-7_0-branch
* [new branch] origin/initscripts-7_1-branch ->
origin/initscripts-7_1-branch
* [new branch] origin/initscripts-7_2-branch ->
origin/initscripts-7_2-branch
* [new branch] origin/initscripts-7_3-branch ->
origin/initscripts-7_3-branch
* [new branch] origin/initscripts-8_0-branch ->
origin/initscripts-8_0-branch
* [new branch] origin/initscripts-9-branch ->
origin/initscripts-9-branch
* [new branch] origin/initscripts-FC1-branch ->
origin/initscripts-FC1-branch
* [new branch] origin/initscripts-FC2-branch ->
origin/initscripts-FC2-branch
* [new branch] origin/master -> origin/master
* [new branch] origin/origin -> origin/origin
* [new branch] origin/redhat -> origin/redhat
* [new branch] origin/rhel4-branch -> origin/rhel4-branch
* [new branch] origin/rhel5-branch -> origin/rhel5-branch
* [new branch] origin/rhel6-branch -> origin/rhel6-branch
* [new branch] origin/systemd-branch -> origin/systemd-branch
* [new branch] origin/unstable -> origin/unstable
* [new branch] origin/upstart-0.6.0-branch ->
origin/upstart-0.6.0-branch
* [new branch] personal/master -> personal/master
* [new branch] personal/mga-9.21-mdkconf -> personal/mga-9.21-mdkconf
* [new branch] personal/mga-9.25-branding ->
personal/mga-9.25-branding
* [new branch] personal/mga-9.25-mdkconf -> personal/mga-9.25-mdkconf
* [new branch] personal/mga-9.25-patches -> personal/mga-9.25-patches
* [new branch] personal/mga-patch -> personal/mga-patch
* [new tag] initscripts-7.93.35-1.el4 -> initscripts-7.93.35-1.el4
* [new tag] initscripts-8.45.30-1 -> initscripts-8.45.30-1
* [new tag] initscripts-8.45.31-1 -> initscripts-8.45.31-1
* [new tag] initscripts-8.45.32-1 -> initscripts-8.45.32-1
* [new tag] initscripts-8.45.33-1 -> initscripts-8.45.33-1
* [new tag] initscripts-8.45.34-1 -> initscripts-8.45.34-1
* [new tag] initscripts-8.45.35-1 -> initscripts-8.45.35-1
* [new tag] initscripts-8.45.36-1 -> initscripts-8.45.36-1
* [new tag] initscripts-8.45.37-1 -> initscripts-8.45.37-1
* [new tag] initscripts-8.45.38-1 -> initscripts-8.45.38-1
* [new tag] initscripts-8.95.1-1 -> initscripts-8.95.1-1
* [new tag] initscripts-8.96-1 -> initscripts-8.96-1
* [new tag] initscripts-8.97-1 -> initscripts-8.97-1
* [new tag] initscripts-8.98-1 -> initscripts-8.98-1
* [new tag] initscripts-8.99-1 -> initscripts-8.99-1
* [new tag] initscripts-9.00-1 -> initscripts-9.00-1
* [new tag] initscripts-9.01-1 -> initscripts-9.01-1
* [new tag] initscripts-9.02-1 -> initscripts-9.02-1
* [new tag] initscripts-9.02.1-1 -> initscripts-9.02.1-1
* [new tag] initscripts-9.02.2-1 -> initscripts-9.02.2-1
* [new tag] initscripts-9.03-1 -> initscripts-9.03-1
* [new tag] initscripts-9.03.1-1 -> initscripts-9.03.1-1
* [new tag] initscripts-9.03.10-1 -> initscripts-9.03.10-1
* [new tag] initscripts-9.03.11-1 -> initscripts-9.03.11-1
* [new tag] initscripts-9.03.12-1 -> initscripts-9.03.12-1
* [new tag] initscripts-9.03.13-1 -> initscripts-9.03.13-1
* [new tag] initscripts-9.03.14-1 -> initscripts-9.03.14-1
* [new tag] initscripts-9.03.15-1 -> initscripts-9.03.15-1
* [new tag] initscripts-9.03.16-1 -> initscripts-9.03.16-1
* [new tag] initscripts-9.03.17-1 -> initscripts-9.03.17-1
* [new tag] initscripts-9.03.18-1 -> initscripts-9.03.18-1
* [new tag] initscripts-9.03.19-1 -> initscripts-9.03.19-1
* [new tag] initscripts-9.03.2-1 -> initscripts-9.03.2-1
* [new tag] initscripts-9.03.20-1 -> initscripts-9.03.20-1
* [new tag] initscripts-9.03.21-1 -> initscripts-9.03.21-1
* [new tag] initscripts-9.03.22-1 -> initscripts-9.03.22-1
* [new tag] initscripts-9.03.23-1 -> initscripts-9.03.23-1
* [new tag] initscripts-9.03.24-1 -> initscripts-9.03.24-1
* [new tag] initscripts-9.03.25-1 -> initscripts-9.03.25-1
* [new tag] initscripts-9.03.26-1 -> initscripts-9.03.26-1
* [new tag] initscripts-9.03.27-1 -> initscripts-9.03.27-1
* [new tag] initscripts-9.03.3-1 -> initscripts-9.03.3-1
* [new tag] initscripts-9.03.4-1 -> initscripts-9.03.4-1
* [new tag] initscripts-9.03.5-1 -> initscripts-9.03.5-1
* [new tag] initscripts-9.03.6-1 -> initscripts-9.03.6-1
* [new tag] initscripts-9.03.7-1 -> initscripts-9.03.7-1
* [new tag] initscripts-9.03.7-1.1 -> initscripts-9.03.7-1.1
* [new tag] initscripts-9.03.7-1.2 -> initscripts-9.03.7-1.2
* [new tag] initscripts-9.03.8-1 -> initscripts-9.03.8-1
* [new tag] initscripts-9.03.9-1 -> initscripts-9.03.9-1
* [new tag] initscripts-9.04-1 -> initscripts-9.04-1
* [new tag] initscripts-9.05-1 -> initscripts-9.05-1
* [new tag] initscripts-9.06-1 -> initscripts-9.06-1
* [new tag] initscripts-9.07-1 -> initscripts-9.07-1
* [new tag] initscripts-9.08-1 -> initscripts-9.08-1
* [new tag] initscripts-9.09-1 -> initscripts-9.09-1
* [new tag] initscripts-9.10-1 -> initscripts-9.10-1
* [new tag] initscripts-9.11-1 -> initscripts-9.11-1
* [new tag] initscripts-9.12-1 -> initscripts-9.12-1
* [new tag] initscripts-9.12-1.1 -> initscripts-9.12-1.1
* [new tag] initscripts-9.12-1.2 -> initscripts-9.12-1.2
* [new tag] initscripts-9.12.1-1 -> initscripts-9.12.1-1
* [new tag] initscripts-9.13-1 -> initscripts-9.13-1
* [new tag] initscripts-9.14-1 -> initscripts-9.14-1
* [new tag] initscripts-9.15-1 -> initscripts-9.15-1
* [new tag] initscripts-9.15-1.1 -> initscripts-9.15-1.1
* [new tag] initscripts-9.15.0.1.systemd-1 ->
initscripts-9.15.0.1.systemd-1
* [new tag] initscripts-9.16-1 -> initscripts-9.16-1
* [new tag] initscripts-9.16.0.1.systemd-1 ->
initscripts-9.16.0.1.systemd-1
* [new tag] initscripts-9.16.0.2.systemd-1 ->
initscripts-9.16.0.2.systemd-1
* [new tag] initscripts-9.16.0.3.systemd-1 ->
initscripts-9.16.0.3.systemd-1
* [new tag] initscripts-9.16.0.4.systemd-1 ->
initscripts-9.16.0.4.systemd-1
* [new tag] initscripts-9.17-1 -> initscripts-9.17-1
* [new tag] initscripts-9.18-1 -> initscripts-9.18-1
* [new tag] initscripts-9.19-1 -> initscripts-9.19-1
* [new tag] initscripts-9.20-1 -> initscripts-9.20-1
* [new tag] initscripts-9.20.1-1 -> initscripts-9.20.1-1
* [new tag] initscripts-9.20.2-1 -> initscripts-9.20.2-1
* [new tag] initscripts-9.21-1 -> initscripts-9.21-1
* [new tag] initscripts-9.21.systemd-1 ->
initscripts-9.21.systemd-1
* [new tag] initscripts-9.22-1 -> initscripts-9.22-1
* [new tag] initscripts-9.23-1 -> initscripts-9.23-1
* [new tag] initscripts-9.24-1 -> initscripts-9.24-1
* [new tag] initscripts-9.25-1 -> initscripts-9.25-1
* [new tag] initscripts-9.26-1 -> initscripts-9.26-1
* [new tag] initscripts-9.27-1 -> initscripts-9.27-1
* [new tag] initscripts-9.28-1 -> initscripts-9.28-1
* [new tag] initscripts-9.29-1 -> initscripts-9.29-1
* [new tag] initscripts-9.30-1 -> initscripts-9.30-1
* [new tag] initscripts-9.31-1 -> initscripts-9.31-1
--
Colin Guthrie
colin(at)mageia.org
<A HREF="http://colin.guthr.ie/">http://colin.guthr.ie/</A>
Day Job:
Tribalogic Limited <A HREF="http://www.tribalogic.net/">http://www.tribalogic.net/</A>
Open Source:
Mageia Contributor <A HREF="http://www.mageia.org/">http://www.mageia.org/</A>
PulseAudio Hacker <A HREF="http://www.pulseaudio.org/">http://www.pulseaudio.org/</A>
Trac Hacker <A HREF="http://trac.edgewall.org/">http://trac.edgewall.org/</A>
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="004038.html">[Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.
</A></li>
<LI>Next message: <A HREF="004040.html">[Mageia-sysadm] Initscripts - Migrating to git and regenerating mdkconf.patch and further Mageia tweaks.
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#4039">[ date ]</a>
<a href="thread.html#4039">[ thread ]</a>
<a href="subject.html#4039">[ subject ]</a>
<a href="author.html#4039">[ author ]</a>
</LI>
</UL>
<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
mailing list</a><br>
</body></html>
|