forked from perceus/perceus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
12228 lines (9346 loc) · 455 KB
/
Copy pathChangeLog
File metadata and controls
12228 lines (9346 loc) · 455 KB
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
------------------------------------------------------------------------
r2620 | astevens | 2013-05-09 12:30:22 -0800 (Thu, 05 May 2013)
Tons of fixes, updates, etc. Sorry it took so long to get done.
Submitted-by: Arthur Stevens <astevens@infiscale.com>
------------------------------------------------------------------------
r2402 | bernardl | 2010-07-29 11:45:19 -0700 (Thu, 29 Jul 2010) | 4 lines
Changed paths:
M /1.6/scripts/bin/perceus-htpasswd
Fix bugzilla #46: make perceus-htpasswd work on openSUSE
Submitted-by: Darin Perusich <darin.perusich@cognigencorp.com>
------------------------------------------------------------------------
r2401 | bernardl | 2010-07-21 17:31:20 -0700 (Wed, 21 Jul 2010) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateful.sh
M /1.6/scripts/share/chroot2stateless.sh
$MASTER was declared twice
------------------------------------------------------------------------
r2400 | bernardl | 2010-07-20 18:14:03 -0700 (Tue, 20 Jul 2010) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateless.sh
The vnfstime feature uses find during vnfs umount to print out the mtime of all files in the VNFS capsule to vnfs.lst. In newer versions of findutils (4.3.3+), %TS will print out a fractional part for seconds which isn't supported by touch -t that is executed during boot time to set the mtime correctly. Added code to strip out the fractional part in the vnfstime.sh script.
------------------------------------------------------------------------
r2399 | bernardl | 2010-07-20 13:22:50 -0700 (Tue, 20 Jul 2010) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
D /1.6/3rd_party/busybox-1.12.4.tar.gz
A /1.6/3rd_party/busybox-1.16.2.tar.bz2 (from /1.6/3rd_party/busybox-1.12.4.tar.gz:2391)
M /1.6/3rd_party/configs/busybox-default.config
modprobe built from the current version of busybox on newer systems (eg. RHEL6b2) has issues locating kernel modules to load (during Perceus stage 1). Updating busybox to the latest stable (1.16.2) fixes this issue.
------------------------------------------------------------------------
r2398 | bernardl | 2010-07-20 12:04:40 -0700 (Tue, 20 Jul 2010) | 2 lines
Changed paths:
M /1.6/scripts/share/rhel-6-genchroot.sh
Use --file /etc/redhat-release to query the release RPM as redhat-release RPM no longer exists in RHEL6b2 Server (it has been renamed redhat-release-server).
------------------------------------------------------------------------
r2397 | bernardl | 2010-07-13 11:10:17 -0700 (Tue, 13 Jul 2010) | 4 lines
Changed paths:
M /1.6/scripts/lib/Perceus/Status.pm
Fix bug where daemon_ping() was not getting the correct response due to "# PERCEUSD START" being sent from the daemon.
Reported-by: Danny Sternkopf <dsternkopf@hpce.nec.com>
------------------------------------------------------------------------
r2396 | bernardl | 2010-07-12 12:07:46 -0700 (Mon, 12 Jul 2010) | 4 lines
Changed paths:
M /1.6/scripts/lib/Perceus/Interface/Cmdline.pm
Fix bug where `perceus {node,group} summary` shows 'yes' for 'Enabled' even when it isn't.
Reported-by: Danny Sternkopf <dsternkopf@hpce.nec.com>
------------------------------------------------------------------------
r2395 | bernardl | 2010-06-21 14:57:06 -0700 (Mon, 21 Jun 2010) | 4 lines
Changed paths:
M /1.6/scripts/share/chroot2stateful.sh
- Removed need for $RAID_DEVICES and simply merge that to $TARGETS in VNFS config
- Added error checking for wrong VNFS config (eg. wrong RAID level, unsupported filesystems)
- Keep track of time it took to provision VNFS image
------------------------------------------------------------------------
r2394 | bernardl | 2010-06-16 15:19:20 -0700 (Wed, 16 Jun 2010) | 1 line
Changed paths:
M /1.6/scripts/share/chroot2stateful.sh
M /1.6/scripts/share/chroot2stateless.sh
Fix typo: revelent -> relevant
------------------------------------------------------------------------
r2393 | bernardl | 2010-06-16 13:27:53 -0700 (Wed, 16 Jun 2010) | 2 lines
Changed paths:
M /1.6/scripts/share/Makefile.am
Forgot to add rhel-6-genchroot.sh to Makefile.am in a previous checkin so it wasn't included in the tarball
------------------------------------------------------------------------
r2392 | bernardl | 2010-06-16 13:25:07 -0700 (Wed, 16 Jun 2010) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
M /1.6/configure.in
Build mkfs.xfs dynamically to save space -- also seems to have issues building it statically under RHEL6 beta
------------------------------------------------------------------------
r2391 | bernardl | 2010-06-15 11:28:32 -0700 (Tue, 15 Jun 2010) | 2 lines
Changed paths:
M /1.6/src/provisiond/provisiond.c
Fix typos
------------------------------------------------------------------------
r2390 | bernardl | 2010-06-08 16:38:26 -0700 (Tue, 08 Jun 2010) | 5 lines
Changed paths:
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
Enable storage device drivers:
- Make the Intel PIIX/ICH chipsets support built-in (for VMWware testing)
- Enable device driver for LSI Logic MegaRAID Driver (for Dell PowerEdge 1855
PERC 4/IM SCSI-RAID)
------------------------------------------------------------------------
r2389 | bernardl | 2010-06-08 16:17:08 -0700 (Tue, 08 Jun 2010) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
A /1.6/3rd_party/patches/xfsprogs-3.1.0-glibc-fixes.patch
M /1.6/perceus.spec.in
M /1.6/scripts/share/chroot2stateless.sh
A /1.6/scripts/share/rhel-6-genchroot.sh (from /1.6/scripts/share/rhel-genchroot.sh:2387)
Add support for Red Hat Enterprise Linux 6 Beta
------------------------------------------------------------------------
r2388 | bernardl | 2010-06-08 15:46:13 -0700 (Tue, 08 Jun 2010) | 2 lines
Changed paths:
M /1.6/src/provisiond/provisiond.c
Fix typo
------------------------------------------------------------------------
r2387 | okra | 2010-03-10 15:18:08 -0800 (Wed, 10 Mar 2010) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
M /1.6/src/provisiond/provisiond.c
Remove monitoring from perceus. It has been moved to warewulf3d.
------------------------------------------------------------------------
r2386 | okra | 2010-02-15 19:47:15 -0800 (Mon, 15 Feb 2010) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
M /1.6/src/provisiond/provisiond.c
Keep preparing provisiond and perceusd to handle monitoring. Code is commented out, so not in use yet.
------------------------------------------------------------------------
r2385 | okra | 2010-02-14 15:38:06 -0800 (Sun, 14 Feb 2010) | 2 lines
Changed paths:
M /1.6/src/provisiond/provisiond.c
Shorten the interval
------------------------------------------------------------------------
r2384 | okra | 2010-02-14 14:40:11 -0800 (Sun, 14 Feb 2010) | 2 lines
Changed paths:
M /1.6/src/provisiond/provisiond.c
Start adding some monitoring functionality to provisiond.
------------------------------------------------------------------------
r2383 | okra | 2010-01-22 09:59:14 -0800 (Fri, 22 Jan 2010) | 4 lines
Changed paths:
M /1.6/configure.in
M /1.6/src/provisiond/provisiond.c
Change the way perceus checks for debian/ubuntu in configure, and change
provisiond.c to use ddprintf instead of dprintf to avoid conflict with
stdio.h
------------------------------------------------------------------------
r2376 | gmk | 2009-12-10 20:21:32 -0800 (Thu, 10 Dec 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
D /1.6/3rd_party/linux-2.6.31.tar.bz2
A /1.6/3rd_party/linux-2.6.32.tar.bz2
D /1.6/3rd_party/patches/linux-2.6.32-rc5.patch
Update kernel
------------------------------------------------------------------------
r2375 | gmk | 2009-12-10 20:11:36 -0800 (Thu, 10 Dec 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
Open and Read the DB only when necessary.
------------------------------------------------------------------------
r2374 | mej | 2009-12-10 19:28:17 -0800 (Thu, 10 Dec 2009) | 6 lines
Changed paths:
M /1.6/modules/hostname/49-hostname.sh
Revert FQDN for hostname module. This has caused me immense amounts
of pain. If it ever returns, it needs to be opt-in, not opt-out, and
have an external config file of its own, not reuse the
marginally-related dnsmasq option.
------------------------------------------------------------------------
r2373 | gmk | 2009-12-03 22:57:57 -0800 (Thu, 03 Dec 2009) | 2 lines
Changed paths:
M /1.6/docs/perceus-userguide.tex.in
Minor typo fix
------------------------------------------------------------------------
r2371 | gmk | 2009-11-30 19:50:03 -0800 (Mon, 30 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceus
Implement command specific help messages (in reference to RFE # 37).
------------------------------------------------------------------------
r2370 | gmk | 2009-11-30 19:03:03 -0800 (Mon, 30 Nov 2009) | 2 lines
Changed paths:
M /1.5/docs/perceus-userguide.tex.in
M /1.6/docs/perceus-userguide.tex.in
Minor doc update to include SMART chroot commands
------------------------------------------------------------------------
r2369 | gmk | 2009-11-30 19:02:37 -0800 (Mon, 30 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
Properly close inactive file handles.
------------------------------------------------------------------------
r2365 | mej | 2009-11-19 23:10:57 -0800 (Thu, 19 Nov 2009) | 1 line
Changed paths:
M /1.6/configure.in
M /1.6/modules/Makefile.am
Finish removing xcpu to fix build.
------------------------------------------------------------------------
r2364 | gmk | 2009-11-19 21:41:01 -0800 (Thu, 19 Nov 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
D /1.6/3rd_party/xcpu1-1.2.3.tar.gz
M /1.6/etc/perceus.conf
D /1.6/modules/xcpu
M /1.6/scripts/init.d/debian-perceus.in
M /1.6/scripts/init.d/gentoo-perceus.in
M /1.6/scripts/init.d/nsa-perceus.in
M /1.6/scripts/init.d/perceus
M /1.6/scripts/init.d/redhat-perceus.in
M /1.6/scripts/init.d/slackware-perceus.in
M /1.6/scripts/init.d/suse-perceus.in
M /1.6/scripts/nodescripts/00-init.sh
Remove xcpu/xget support (project seems to be done).
------------------------------------------------------------------------
r2363 | gmk | 2009-11-19 21:39:53 -0800 (Thu, 19 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
Update the ethers file when service starts
------------------------------------------------------------------------
r2358 | gmk | 2009-11-15 00:11:49 -0800 (Sun, 15 Nov 2009) | 3 lines
Changed paths:
M /1.6/scripts/share/Makefile.am
D /1.6/scripts/share/chroot2stateless-icr.sh
M /1.6/scripts/share/chroot2stateless.sh
Updates to chroot2stateless.sh. Still need to go back and fix the tmpfs logic
for the initramfs... What was there didn't work.
------------------------------------------------------------------------
r2357 | gmk | 2009-11-13 01:59:52 -0800 (Fri, 13 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/Makefile.am
A /1.6/scripts/share/chroot2stateless-icr.sh
Importing chroot2stateless for ICR clusters (minor diff between this and standard version).
------------------------------------------------------------------------
r2354 | gmk | 2009-11-08 09:20:35 -0800 (Sun, 08 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/demos/daemon-bench.pl
Fixed up the daemon-benchmark a bit more
------------------------------------------------------------------------
r2353 | gmk | 2009-11-08 09:19:36 -0800 (Sun, 08 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/lib/Perceus/Nodes.p
We don't need to open all DB's to add a node
------------------------------------------------------------------------
r2352 | gmk | 2009-11-08 09:19:05 -0800 (Sun, 08 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
Daemon updates
------------------------------------------------------------------------
r2351 | gmk | 2009-11-08 09:18:56 -0800 (Sun, 08 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/scriptrunner
Starting nodescript
------------------------------------------------------------------------
r2350 | gmk | 2009-11-02 22:29:01 -0800 (Mon, 02 Nov 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
Fixed kernel configs for 64bit and 32bit cleanups.
------------------------------------------------------------------------
r2349 | gmk | 2009-11-01 22:56:48 -0800 (Sun, 01 Nov 2009) | 2 lines
Changed paths:
M /1.6/scripts/bin/perceusd
Lots of work to control socket.
------------------------------------------------------------------------
r2348 | gmk | 2009-11-01 17:19:02 -0800 (Sun, 01 Nov 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
Lightened kernel load
------------------------------------------------------------------------
r2346 | gmk | 2009-10-31 22:19:20 -0700 (Sat, 31 Oct 2009) | 3 lines
Changed paths:
M /1.6/configure.in
M /1.6/etc/Perceus_Include.pm.in
M /1.6/etc/perceus.conf
M /1.6/scripts/Makefile.am
M /1.6/scripts/bin/Makefile.am
A /1.6/scripts/bin/perceus-htpasswd (from /1.6/scripts/sbin/perceus-htpasswd:2343)
A /1.6/scripts/bin/perceus-init (from /1.6/scripts/sbin/perceus-init:2343)
A /1.6/scripts/bin/perceusd (from /1.6/scripts/sbin/perceusd:2343)
A /1.6/scripts/bin/scriptrunner
M /1.6/scripts/lib/Perceus/Nodes.pm
D /1.6/scripts/sbin
M /1.6/src/provisiond/provisiond.c
New daemon and scriptrunner model for 1.6. Also moved all *bin scripts into a
command directory structure.
------------------------------------------------------------------------
r2345 | gmk | 2009-10-28 00:00:04 -0700 (Wed, 28 Oct 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
A /1.6/3rd_party/patches/linux-2.6.32-rc5.patch (from /1.6/3rd_party/patches/patch-2.6.32-rc5:2343)
D /1.6/3rd_party/patches/patch-2.6.32-rc5
Moved patch so it gets included in distfile creation
------------------------------------------------------------------------
r2344 | gmk | 2009-10-27 00:45:57 -0700 (Tue, 27 Oct 2009) | 2 lines
Changed paths:
M /1.6/docs/perceus-userguide.tex.in
Minor wording adjustment for node replacement.
------------------------------------------------------------------------
r2340 | gmk | 2009-10-22 20:16:03 -0700 (Thu, 22 Oct 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateful.sh
Committed patch from RFQ #20. Thanks Bernard!
------------------------------------------------------------------------
r2339 | gmk | 2009-10-22 19:06:13 -0700 (Thu, 22 Oct 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
Updating configs... These need to be tested.
------------------------------------------------------------------------
r2337 | gmk | 2009-10-20 22:40:19 -0700 (Tue, 20 Oct 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
D /1.6/3rd_party/linux-2.6.30.tar.bz2
A /1.6/3rd_party/linux-2.6.31.tar.bz2
A /1.6/3rd_party/patches/patch-2.6.32-rc5
Kernel update to 2.6.32-rc5 for pre 1.6 testing.
------------------------------------------------------------------------
r2336 | gmk | 2009-10-20 22:06:53 -0700 (Tue, 20 Oct 2009) | 2 lines
Changed paths:
M /1.6/scripts/sbin/perceusd
<sigh>
------------------------------------------------------------------------
r2335 | gmk | 2009-10-20 22:04:31 -0700 (Tue, 20 Oct 2009) | 2 lines
Changed paths:
M /1.6/scripts/sbin/perceusd
Avoiding pandemics!
------------------------------------------------------------------------
r2334 | gmk | 2009-10-20 21:56:57 -0700 (Tue, 20 Oct 2009) | 2 lines
Changed paths:
M /1.6/scripts/sbin/perceusd
Testing an alternative exit stradegy that should hopefully go easier on the DB.
------------------------------------------------------------------------
r2333 | gmk | 2009-10-19 23:52:49 -0700 (Mon, 19 Oct 2009) | 3 lines
Changed paths:
M /1.5/modules/groupfile/50-group.sh
M /1.5/modules/passwdfile/50-passwd.sh
M /1.6/modules/groupfile/50-group.sh
M /1.6/modules/passwdfile/50-passwd.sh
Minor fixup to passwdfile and groupfile modules to suppress errors when certain
attributes are not defined.
------------------------------------------------------------------------
r2330 | gmk | 2009-09-15 20:14:48 -0700 (Tue, 15 Sep 2009) | 2 lines
Changed paths:
M /1.6/post/Makefile.in
M /trunk/post/Makefile.in
Loose the chmod +s
------------------------------------------------------------------------
r2329 | gmk | 2009-09-15 19:04:31 -0700 (Tue, 15 Sep 2009) | 2 lines
Changed paths:
M /1.6/scripts/init.d/nsa-perceus.in
M /1.6/scripts/init.d/redhat-perceus.in
M /1.6/scripts/init.d/suse-perceus.in
Bump up perceusd startup to avoid RPC port conflicts
------------------------------------------------------------------------
r2328 | gmk | 2009-09-14 18:22:04 -0700 (Mon, 14 Sep 2009) | 2 lines
Changed paths:
M /1.6/etc/defaults.conf
Updated config file docs
------------------------------------------------------------------------
r2327 | gmk | 2009-09-14 17:48:57 -0700 (Mon, 14 Sep 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateful.sh
Implementing RFE #14 in stateful VNFS script
------------------------------------------------------------------------
r2326 | gmk | 2009-09-14 17:47:07 -0700 (Mon, 14 Sep 2009) | 4 lines
Changed paths:
M /1.6/scripts/share/chroot2stateless.sh
Adding support for RFE #14:
Allow for node specific config override options
------------------------------------------------------------------------
r2324 | gmk | 2009-09-12 19:50:38 -0700 (Sat, 12 Sep 2009) | 2 lines
Changed paths:
M /1.6/modules/stateful/05-stateful.sh
M /1.6/modules/stateful/Makefile.am
M /1.6/modules/stateful/activate
M /1.6/modules/stateful/defaultroles
Fixing bug 10
------------------------------------------------------------------------
r2323 | gmk | 2009-09-12 19:35:57 -0700 (Sat, 12 Sep 2009) | 4 lines
Changed paths:
M /1.6/etc/defaults.conf
M /1.6/scripts/lib/Perceus/Configure.pm
M /1.6/scripts/lib/Perceus/Nodes.pm
A try at resolving bug number 17 including Bernard's suggestion.
Please test. :)
------------------------------------------------------------------------
r2322 | gmk | 2009-09-12 18:58:22 -0700 (Sat, 12 Sep 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/Makefile.am
Including rhel-genchroot.sh in Makefile so it gets installed.
------------------------------------------------------------------------
r2319 | gmk | 2009-09-09 20:28:04 -0700 (Wed, 09 Sep 2009) | 2 lines
Changed paths:
D /1.6/3rd_party/busybox-1.11.0.tar.gz
Remove busybox-1.11.0
------------------------------------------------------------------------
r2318 | gmk | 2009-09-09 20:27:36 -0700 (Wed, 09 Sep 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/patches/mdadm-3.0-super-intel_c.patch
Fix patch
------------------------------------------------------------------------
r2311 | gmk | 2009-09-08 19:58:56 -0700 (Tue, 08 Sep 2009) | 2 lines
Changed paths:
M /1.6/3rd_party/Makefile.in
A /1.6/3rd_party/busybox-1.12.4.tar.gz
M /1.6/3rd_party/configs/busybox-default.config
M /1.6/3rd_party/configs/kernel-i386.config
M /1.6/3rd_party/configs/kernel-x86_64.config
A /1.6/3rd_party/e2fsprogs-1.41.6.tar.gz
A /1.6/3rd_party/mdadm-3.0.tar.gz
A /1.6/3rd_party/patches/mdadm-3.0-super-intel_c.patch
A /1.6/3rd_party/xfsprogs-3.0.1.tar.gz
M /1.6/configure.in
M /1.6/modules/Makefile.am
M /1.6/modules/hostname/49-hostname.sh
M /1.6/modules/ipaddr/50-ipaddr.pl
M /1.6/modules/modprobe/50-modprobe.sh
A /1.6/modules/stateful
A /1.6/modules/stateful/05-stateful.sh
A /1.6/modules/stateful/Makefile.am
A /1.6/modules/stateful/activate
A /1.6/modules/stateful/defaultroles
M /1.6/perceus.spec.in
M /1.6/scripts/share/Makefile.am
A /1.6/scripts/share/chroot2stateful.sh
M /1.6/scripts/share/chroot2stateless.sh
A /1.6/scripts/share/rhel-genchroot.sh
Import Bernard's stateful patch additions
------------------------------------------------------------------------
r2237 | gmk | 2009-08-07 01:24:26 -0700 (Fri, 07 Aug 2009) | 2 lines
Changed paths:
M /1.6/scripts/sbin/perceusd
Bernard's perceusd patch (fixes newer Net::ARP that requires an ethernet device argument.
------------------------------------------------------------------------
r2236 | gmk | 2009-08-07 01:23:47 -0700 (Fri, 07 Aug 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/caos-2.0-genchroot.sh
M /1.6/scripts/share/centos-4-genchroot.sh
M /1.6/scripts/share/centos-4.4-genchroot.sh
M /1.6/scripts/share/centos-4.5-genchroot.sh
M /1.6/scripts/share/centos-4.6-genchroot.sh
M /1.6/scripts/share/centos-5-genchroot.sh
M /1.6/scripts/share/centos-5.0-genchroot.sh
M /1.6/scripts/share/centos-5.1-genchroot.sh
M /1.6/scripts/share/chroot2stateless.sh
M /1.6/scripts/share/scientific-linux-4.5-genchroot.sh
M /1.6/scripts/share/scientific-linux-5.0-genchroot.sh
M /1.6/scripts/share/scientific-linux-5.1-genchroot.sh
Bernard's fastboot patch
------------------------------------------------------------------------
r2235 | gmk | 2009-08-07 01:23:13 -0700 (Fri, 07 Aug 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateless.sh
Bernard's mtime patch
------------------------------------------------------------------------
r2234 | gmk | 2009-08-07 01:22:33 -0700 (Fri, 07 Aug 2009) | 2 lines
Changed paths:
M /1.6/scripts/lib/Perceus/Configure.pm
Bernard's Configure patch
------------------------------------------------------------------------
r2203 | gmk | 2009-07-23 01:16:39 -0700 (Thu, 23 Jul 2009) | 2 lines
Changed paths:
M /1.6/scripts/lib/Perceus/Configure.pm
M /trunk/scripts/lib/Perceus/Configure.pm
Added the much needed semicolon. Thanks Bernard!
------------------------------------------------------------------------
r2202 | gmk | 2009-07-23 01:13:26 -0700 (Thu, 23 Jul 2009) | 3 lines
Changed paths:
M /1.6/scripts/share/chroot2stateless.sh
M /trunk/scripts/share/chroot2stateless.sh
I am pretty sure that the /nashinit needs to be created before nash calls it. This
needs to be verified...
------------------------------------------------------------------------
r2201 | gmk | 2009-07-23 01:11:42 -0700 (Thu, 23 Jul 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateless.sh
M /trunk/scripts/share/chroot2stateless.sh
Backed out and unintended update, and remerged.
------------------------------------------------------------------------
r2200 | gmk | 2009-07-23 01:04:54 -0700 (Thu, 23 Jul 2009) | 2 lines
Changed paths:
M /1.6/scripts/share/chroot2stateless.sh
M /trunk/scripts/share/chroot2stateless.sh
Some fixups for default installs with torque to use NFS for copying log files
------------------------------------------------------------------------
r2199 | gmk | 2009-07-23 01:04:18 -0700 (Thu, 23 Jul 2009) | 2 lines
Changed paths:
M /1.6/scripts/initramfs/hw_load
M /1.6/scripts/initramfs/initramfs.conf.in
M /trunk/scripts/initramfs/hw_load
M /trunk/scripts/initramfs/initramfs.conf.in
support scsi properly for stateful provisioning
------------------------------------------------------------------------
r2148 | gmk | 2009-07-11 21:52:18 -0700 (Sat, 11 Jul 2009) | 2 lines
Changed paths:
A /1.6 (from /trunk:2146)
Preparing 1.6 tree for release
------------------------------------------------------------------------
r2141 | gmk | 2009-07-04 17:38:35 -0700 (Sat, 04 Jul 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/perceus-init
M /trunk/scripts/sbin/perceus-init
Don't goto lbl.gov, instead use OSUOSL and give better credit.
------------------------------------------------------------------------
r2139 | gmk | 2009-07-04 17:29:48 -0700 (Sat, 04 Jul 2009) | 3 lines
Changed paths:
M /1.5/scripts/share/chroot2stateless.sh
M /trunk/scripts/share/chroot2stateless.sh
Adding master to node's /etc/hosts sounds like a good idea, until the master's
hostname is localhost!! :(
------------------------------------------------------------------------
r2138 | gmk | 2009-06-27 22:24:02 -0700 (Sat, 27 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/lib/Perceus/Configure.pm
Minor updates to default pxelinux config
------------------------------------------------------------------------
r2137 | gmk | 2009-06-25 21:23:07 -0700 (Thu, 25 Jun 2009) | 2 lines
Changed paths:
M /trunk/configure.in
M /trunk/modules/Makefile.am
D /trunk/modules/hostfile
Remove hostfile module (has been used incorrectly and causing problems)
------------------------------------------------------------------------
r2136 | gmk | 2009-06-24 00:03:27 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/lib/Perceus/Interface/Cmdline.pm
Sort node list output by group and then nodename where applicable.
------------------------------------------------------------------------
r2135 | gmk | 2009-06-24 00:02:50 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/lib/Perceus/Nodes.pm
Some various cleanups, and skip nodescripts ending in a '~'.
------------------------------------------------------------------------
r2134 | gmk | 2009-06-24 00:01:58 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/sbin/perceusd
Multiple fixups to perceusd, and allows non-exec'able nodescripts to just spit out any shell script contents.
------------------------------------------------------------------------
r2133 | gmk | 2009-06-24 00:00:42 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/demos/cluster-simulate.pl
M /trunk/scripts/demos/daemon-bench.pl
Fixed demo scripts.
------------------------------------------------------------------------
r2132 | gmk | 2009-06-24 00:00:01 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/post/Makefile.in
Fix inclusion of mdev.conf
------------------------------------------------------------------------
r2131 | gmk | 2009-06-23 01:18:21 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/post/Makefile.in
A /trunk/post/mdev.conf
Add the needed config for mdev
------------------------------------------------------------------------
r2130 | gmk | 2009-06-23 01:15:26 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/3rd_party/configs/kernel-i386.config
M /trunk/3rd_party/configs/kernel-x86_64.config
Enable hotplug so mdev works.
------------------------------------------------------------------------
r2129 | gmk | 2009-06-23 01:05:27 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/lib/Perceus/Configure.pm
Fix quotation escapes
------------------------------------------------------------------------
r2128 | gmk | 2009-06-23 00:50:27 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/3rd_party/Makefile.in
A /trunk/3rd_party/memtest86+-2.11.bin.gz
Include memtest
------------------------------------------------------------------------
r2127 | gmk | 2009-06-23 00:50:00 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/lib/Perceus/Configure.pm
Make boot menu work more like Caos livemedia
------------------------------------------------------------------------
r2126 | mej | 2009-06-22 23:38:52 -0700 (Mon, 22 Jun 2009) | 1 line
Changed paths:
M /trunk/modules/ipaddr/50-ipaddr.pl
Cleanup
------------------------------------------------------------------------
r2125 | gmk | 2009-06-20 22:49:44 -0700 (Sat, 20 Jun 2009) | 2 lines
Changed paths:
M /trunk/3rd_party/Makefile.in
D /trunk/3rd_party/linux-2.6.29.tar.bz2
A /trunk/3rd_party/linux-2.6.30.tar.bz2
D /trunk/3rd_party/patches/patch-2.6.30-rc7
Upgrade kernel to current 2.6.30
------------------------------------------------------------------------
r2124 | gmk | 2009-06-20 22:30:47 -0700 (Sat, 20 Jun 2009) | 2 lines
Changed paths:
M /trunk/3rd_party/configs/busybox-default.config
M /trunk/scripts/initramfs/rc.perceus
Enable mdev and support loading firmwares.
------------------------------------------------------------------------
r2123 | gmk | 2009-06-19 19:34:27 -0700 (Fri, 19 Jun 2009) | 2 lines
Changed paths:
M /1.5/configure.in
M /trunk/configure.in
Cleanup configure scripts and add appropriate required checks.
------------------------------------------------------------------------
r2122 | gmk | 2009-06-19 19:30:31 -0700 (Fri, 19 Jun 2009) | 2 lines
Changed paths:
M /1.5/scripts/lib/Perceus/Interface/Cmdline.pm
M /trunk/scripts/lib/Perceus/Interface/Cmdline.pm
Minor in module deactivate roles parsing
------------------------------------------------------------------------
r2121 | mej | 2009-06-18 23:50:43 -0700 (Thu, 18 Jun 2009) | 5 lines
Changed paths:
D /1.5/ChangeLog
M /1.5/perceus.spec.in
M /trunk/3rd_party/Makefile.in
A /trunk/3rd_party/patches/dnsmasq-2.45-allow_cluster_name_suffixes.patch (from /1.5/3rd_party/patches/dnsmasq-2.45-allow_cluster_name_suffixes.patch:2120)
M /trunk/perceus.spec.in
Thu Jun 18 22:22:44 2009 Michael Jennings (mej)
Forward-port patch. Allow building on RHEL4.
----------------------------------------------------------------------
------------------------------------------------------------------------
r2119 | gmk | 2009-06-13 23:29:50 -0700 (Sat, 13 Jun 2009) | 2 lines
Changed paths:
M /trunk/docs/perceus-userguide.tex.in
Doc update.
------------------------------------------------------------------------
r2118 | gmk | 2009-06-13 23:29:32 -0700 (Sat, 13 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/sbin/perceus-init
Don't export /srv by default.
------------------------------------------------------------------------
r2117 | gmk | 2009-06-13 23:24:07 -0700 (Sat, 13 Jun 2009) | 2 lines
Changed paths:
M /trunk/modules/ipaddr/50-ipaddr.pl
Feature and fixups to ipaddr.
------------------------------------------------------------------------
r2116 | gmk | 2009-06-13 23:22:35 -0700 (Sat, 13 Jun 2009) | 2 lines
Changed paths:
M /trunk/scripts/sbin/perceus-init
Minor tweaks to perceus-init
------------------------------------------------------------------------
r2115 | gmk | 2009-06-11 00:41:34 -0700 (Thu, 11 Jun 2009) | 2 lines
Changed paths:
D /1.5/post/makedevs
D /trunk/post/makedevs
makedevs isn't needed anymore.
------------------------------------------------------------------------
r2114 | gmk | 2009-06-06 03:34:59 -0700 (Sat, 06 Jun 2009) | 2 lines
Changed paths:
M /1.5/scripts/cgi/Makefile.am
M /trunk/scripts/cgi/Makefile.am
Don't forget some of the needed images
------------------------------------------------------------------------
r2113 | gmk | 2009-06-03 01:04:52 -0700 (Wed, 03 Jun 2009) | 3 lines
Changed paths:
M /1.5/scripts/lib/Perceus/Interface/Cmdline.pm
M /1.5/scripts/lib/Perceus/Nodes.pm
M /trunk/scripts/lib/Perceus/Interface/Cmdline.pm
M /trunk/scripts/lib/Perceus/Nodes.pm
Fixed several bugs with nodes not being found and being able to reference
nodes by nodeid (-i).
------------------------------------------------------------------------
r2112 | gmk | 2009-06-02 23:36:37 -0700 (Tue, 02 Jun 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/perceus-init
M /trunk/scripts/sbin/perceus-init
Regex pattern fixup for detecting RFC1918
------------------------------------------------------------------------
r2111 | gmk | 2009-05-31 22:00:22 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/perceus-init
M /trunk/scripts/sbin/perceus-init
Minor tweak of the registration timing.
------------------------------------------------------------------------
r2110 | gmk | 2009-05-31 19:53:31 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/perceus-init
M /trunk/scripts/sbin/perceus-init
Fix RFC1918 sensors
------------------------------------------------------------------------
r2109 | gmk | 2009-05-31 18:18:58 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/perceus.spec.in
M /trunk/perceus.spec.in
Fix for unpackaged files.
------------------------------------------------------------------------
r2108 | gmk | 2009-05-31 17:51:23 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/Makefile.am
D /1.5/scripts/sbin/perceus-config
A /1.5/scripts/sbin/perceus-init
M /trunk/scripts/sbin/Makefile.am
D /trunk/scripts/sbin/perceus-config
A /trunk/scripts/sbin/perceus-init
Moved perceus-config to perceus-init and lots of fixups.
------------------------------------------------------------------------
r2107 | gmk | 2009-05-31 02:16:36 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/perceus-config
M /trunk/scripts/sbin/perceus-config
Minor sanity checking to perceus-config
------------------------------------------------------------------------
r2106 | gmk | 2009-05-31 02:08:24 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/scripts/sbin/Makefile.am
A /1.5/scripts/sbin/perceus-config
M /trunk/scripts/sbin/Makefile.am
A /trunk/scripts/sbin/perceus-config
Added a perceus-config script to make new configurations easier to start off with.
------------------------------------------------------------------------
r2105 | gmk | 2009-05-31 02:07:02 -0700 (Sun, 31 May 2009) | 2 lines
Changed paths:
M /1.5/scripts/share/chroot2stateless.sh
M /trunk/scripts/share/chroot2stateless.sh
Add updates for torque and general fixups that were much needed
------------------------------------------------------------------------
r2104 | gmk | 2009-05-30 23:20:36 -0700 (Sat, 30 May 2009) | 3 lines
Changed paths:
M /1.5/scripts/bin/Makefile.am
A /1.5/scripts/bin/ssh-perceus
M /trunk/scripts/bin/Makefile.am
A /trunk/scripts/bin/ssh-perceus
Add a ssh wrapper that will automatically set the environment for distros
that aren't caos.
------------------------------------------------------------------------
r2103 | gmk | 2009-05-25 11:14:55 -0700 (Mon, 25 May 2009) | 2 lines
Changed paths:
M /trunk/etc/Perceus_Include.pm.in
M /trunk/etc/defaults.conf
M /trunk/etc/perceus-cgi.conf
M /trunk/etc/perceus.conf
M /trunk/etc/perceus_completion
M /trunk/modules/groupfile/50-group.sh
M /trunk/modules/hostfile/50-hostfile.sh
M /trunk/modules/hostname/49-hostname.sh
M /trunk/modules/ipaddr/50-ipaddr.pl
M /trunk/modules/masterauth/50-masterauth.pl
M /trunk/modules/modprobe/50-modprobe.sh
M /trunk/modules/passwdfile/50-passwd.sh
M /trunk/modules/slurm/50-slurm.sh
M /trunk/modules/syncnodes/25-syncnodes.sh
M /trunk/modules/xcpu/05-xcpu.sh
M /trunk/post/makedevs
M /trunk/scripts/bin/perceus
M /trunk/scripts/cgi/index.cgi
M /trunk/scripts/demos/bulkaddnode.pl
M /trunk/scripts/demos/cluster-simulate.pl
M /trunk/scripts/demos/daemon-bench.pl
M /trunk/scripts/init.d/debian-perceus.in
M /trunk/scripts/init.d/debian-provisiond.in
M /trunk/scripts/init.d/gentoo-perceus.in
M /trunk/scripts/init.d/gentoo-provisiond.in
M /trunk/scripts/init.d/nsa-perceus.in
M /trunk/scripts/init.d/nsa-provisiond.in
M /trunk/scripts/init.d/redhat-perceus.in
M /trunk/scripts/init.d/redhat-provisiond.in
M /trunk/scripts/init.d/slackware-perceus.in
M /trunk/scripts/init.d/slackware-provisiond.in
M /trunk/scripts/init.d/suse-perceus.in
M /trunk/scripts/init.d/suse-provisiond.in
M /trunk/scripts/initramfs/dhcp-script
M /trunk/scripts/initramfs/functions
M /trunk/scripts/initramfs/hw_load
M /trunk/scripts/initramfs/hw_unload
M /trunk/scripts/initramfs/initramfs.conf.in
M /trunk/scripts/initramfs/kexec
M /trunk/scripts/initramfs/reboot30
M /trunk/scripts/lib/Perceus/About.pm
M /trunk/scripts/lib/Perceus/CUI.pm
M /trunk/scripts/lib/Perceus/Config.pm
M /trunk/scripts/lib/Perceus/Configure.pm
M /trunk/scripts/lib/Perceus/Contact.pm
M /trunk/scripts/lib/Perceus/DB/BTree.pm
M /trunk/scripts/lib/Perceus/DB/Hash.pm
M /trunk/scripts/lib/Perceus/DB/MySQL.pm
M /trunk/scripts/lib/Perceus/DB.pm
M /trunk/scripts/lib/Perceus/Debug.pm
M /trunk/scripts/lib/Perceus/Dump.pm
M /trunk/scripts/lib/Perceus/Groups.pm
M /trunk/scripts/lib/Perceus/Interface/3rdParty.pm
M /trunk/scripts/lib/Perceus/Interface/Cmdline.pm
M /trunk/scripts/lib/Perceus/Masters.pm
M /trunk/scripts/lib/Perceus/Modules.pm
M /trunk/scripts/lib/Perceus/Nodes.pm
M /trunk/scripts/lib/Perceus/Sanity.pm
M /trunk/scripts/lib/Perceus/Status.pm
M /trunk/scripts/lib/Perceus/System.pm
M /trunk/scripts/lib/Perceus/Util.pm
M /trunk/scripts/lib/Perceus/Vnfs.pm
M /trunk/scripts/nodescripts/00-init.sh
M /trunk/scripts/nodescripts/99-zzzlast.sh
M /trunk/scripts/sbin/perceusd
M /trunk/scripts/share/caos-2.0-genchroot.sh
M /trunk/scripts/share/caos-nsa-1.0-genchroot.sh
M /trunk/scripts/share/centos-4-genchroot.sh
M /trunk/scripts/share/centos-4.4-genchroot.sh
M /trunk/scripts/share/centos-4.5-genchroot.sh
M /trunk/scripts/share/centos-4.6-genchroot.sh
M /trunk/scripts/share/centos-5-genchroot.sh
M /trunk/scripts/share/centos-5.0-genchroot.sh