forked from stevenshiau/clonezilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclonezilla.spec
More file actions
6379 lines (4607 loc) · 377 KB
/
clonezilla.spec
File metadata and controls
6379 lines (4607 loc) · 377 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
Summary: Opensource Clone System (ocs), clonezilla
Name: clonezilla
Version: 3.20.12
Release: drbl1
License: GPL
Group: Development/Clonezilla
Source0: %{name}-%{version}.tar.bz2
URL: http://clonezilla.org
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Requires: bash, perl, drbl >= 2.19.5, partimage >= 0.6.7, psmisc, udpcast, partclone >= 0.2.87, ntfsprogs >= 1.13.1
%description
Clonezilla, based on DRBL, partclone, and udpcast, allows you to do bare metal backup and recovery. Two types of Clonezilla are available, Clonezilla live and Clonezilla SE (Server Edition). Clonezilla live is suitable for single machine backup and restore. While Clonezilla SE is for massive deployment, it can clone many (40 plus!) computers simultaneously.
For more info, check http://clonezilla.org, http://clonezilla.nchc.org.tw.
%prep
%setup -q -n clonezilla-%{version}
%build
make all
%install
make install DESTDIR=$RPM_BUILD_ROOT/
%clean
[ -d "$RPM_BUILD_ROOT" ] && rm -rf $RPM_BUILD_ROOT
%post
%files
%defattr(-,root,root)
/usr/sbin/*
/usr/bin/*
/usr/share/drbl/*
/usr/share/clonezilla/*
/etc/drbl/*
%changelog
* Mon Feb 22 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.12-drbl1
- Update output file names for mdisks-checksum.
* Mon Feb 22 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.11-drbl1
- Rename custom-ocs-3 as mdisks-checksum. It's easier to tell.
* Mon Feb 22 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.10-drbl1
- Add -nogui and modify output file names for custom-ocs-3.
* Mon Feb 22 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.9-drbl1
- The new example file custom-ocs-3 was added. It is used to save or restore disk with checksum mechanism enabled. Especially for deploying multiple disks.
- Add new utility file "ocs-label-dev". It can be used to label a file
* Thu Feb 18 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.8-drbl1
- When inspecting checksum, do not use "-a" for pv to avoid confusion.
- Add checksum results log file, e.g. /var/log/sda-md5sum-results.log.
* Thu Feb 18 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.7-drbl1
- Replace qalculate-gtk with calcoo for GParted live. It's lighter.
- Add calculator in menu for GParted live.
* Tue Feb 16 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.6-drbl1
- Better way to deal with checksum generation part in ocs-onthefly.
* Tue Feb 16 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.5-drbl1
- The log file is renamed as ${image_name}_mdisks_{disk_name}.log, and put in /var/log instead of /tmp.
- Show device info when checksum does not match.
* Tue Feb 16 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.4-drbl1
- Send the otuput of checksum to log file, too.
* Tue Feb 16 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.3-drbl1
- Add option "-f" for pv when generating and inspecting the checksum of files in device. This allows ocs-restore-mdisks to show the status when running in virtual terminal (tee).
* Tue Feb 16 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.2-drbl1
- To avoid the truncation difference, just use byte in pv instead of kB for checksum inspection mechanism.
- Bug fixed: forgot to put variable chksum_cmd_for_files_in_dev for checksum mechanism in drbl-ocs.conf.
* Mon Feb 15 2016 Steven Shiau <steven _at_ nchc org tw> 3.20.1-drbl1
- ocs-cvtimg-comp displays the total elapsed time when converting compression.
- For better compability, the mktemp in ocs-iso and ocs-live-dev uses 6 consecutive 'X's, not 5 ones.
- Bug fixed: remove option "-c" might also remove "-cmf" or "-cm" in ocs-restore-mdisks.
- Add files checksum mechanism for ocs-sr (-gmf/-cmf) and ocs-onthefly (-cmf).
* Wed Feb 3 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.17-drbl1
- Revert Ubuntu mirror defaults to the one from nchc in drbl-ocs.conf.
- Update function check_if_apple_mac with an extra check when dmidecode fails to obtain info in update-efi-nvram-boot-entry. This makes sure efibootmgr won't be run on Apple machine.
* Tue Feb 2 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.16-drbl1
[Ceasar Sun]
- Add /EFI/Microsoft/Boot/bootmgfw.efi for MS Windows, and move
/EFI/Boot/bootx64.efi to the last one in known_efi_boot_file_chklist.
- Add option "-iefi|--ignore-update-efi-nvram" for drbl-ocs.
* Tue Jan 19 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.15-drbl1
- Make ocs-onthefly work for different types of disk cloning, e.g. nvme0n1 -> sda.
- Add functions replace_disk_name_in_file and replace_disk_name_stdin in ocs-functions so that the disk name replacing can use. This is special for different types of disk name, e.g. nvme0n1 -> sda.
* Mon Jan 18 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.14-drbl1
- Make ocs-onthefly work for nvme device cloning, e.g. nvme0n1 -> nvme1n1.
- Use wipefs also to clean the file system when cleaning file system header.
- Bug fixed: get_swap_partition_parted_format of ocs-functions failed to return correct partition name for devices cciss*|mmcblk*|md*|rd*|ida*|nvme*.
* Mon Jan 18 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.13-drbl1
- Disk to disk clonging for NVME device failed to check the destination disk size.
- Expand NVME support to disk device name like /dev/nvme0n2, and /dev/nvme0n3 instead of /dev/nvme0n1 only.
* Sat Jan 16 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.12-drbl1
- Bug fixed: failed to set local boot for uEFI network boot clients when using "-y0" option of drbl-ocs.
* Wed Jan 13 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.11-drbl1
- Packages libpam-systemd and hence dbus are required for GParted live, otherwise keyboard and mouse won't work in X after Sid >= Jan 2016. Package policykit-1 is also added similar to that for lightdm. Thanks to Curtis for Gedak. (https://lists.debian.org/debian-user/2015/10/msg01529.html)
* Tue Jan 12 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.10-drbl1
- Since ttf-kochi-gothic is not available in Debian Sid, change to use fonts-hanazono for GParted live.
* Sun Jan 10 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.9-drbl1
- Bug fixed: Fix missing background image with Grub2 config file created by ocs-live-boot-menu. Thanks to Joey3000. (https://github.com/stevenshiau/clonezilla/pull/19).
* Tue Jan 05 2016 Steven Shiau <steven _at_ nchc org tw> 3.19.8-drbl1
- Since ttf-kochi-gothic is not available in Debian Sid, change to use fonts-hanazono for DRBL live.
* Fri Dec 25 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.7-drbl1
- Add support Ubuntu 16.04 (xenial) in create-ubuntu-live.
* Thu Dec 24 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.6-drbl1
- The deprecated boot parameters ocs_live_keymap, keyb and gl_kbd are removed. Because package console-common is not included anymore due to this issue: https://bugs.launchpad.net/bugs/1528861
* Mon Dec 21 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.5-drbl1
- Stop systemd mkswapfile service in turn_off_swap function.
* Mon Dec 14 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.4-drbl1
- Bug fixed: The size with more than one partition not expanding should be added to the later partition in ocs-expand-gpt-pt.
* Mon Dec 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.3-drbl1
- Allow ocs-install-grub to run when it's a GPT disk with a special "bios_boot" partition exists in the machine using legacy BIOS.
- Use parted to fill the last partitition to the end of disk because there might be some resudial in the calculation of ocs-expand-gpt-pt. Thanks to Conan for this suggestion. Ref: https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/c5e92d87/?limit=25#080c
* Mon Nov 23 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.2-drbl1
- Add option "-scs" to be the same option for "-sc" in drbl-ocs and ocs-sr. This will be easier to tell the differences between saving and restoring image.
* Sat Nov 21 2015 Steven Shiau <steven _at_ nchc org tw> 3.19.1-drbl1
- Adding options -sc0 and -scr for image checking before restoring. Now by default Clonezilla will check image integrity before restoring. Option "-sc0" is used to skip image checking on server, while "-scr" is used to skip image checking on client.
* Mon Nov 16 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.16-drbl1
- Adding nilfs2 in the file systems support list for partclone in drbl-ocs.conf.
* Tue Nov 10 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.15-drbl1
- Reverted to use http://archive.ubuntu.com/ubuntu instead of http://free.nchc.org.tw/ubuntu for ubuntu_mirror_url_def and ubuntu_mirror_security_url_def in drbl-ocs.conf. Otherwise the cache in /var/lib and /var/cache won't be removed. It makes the iso/zip ~30 MB larger.
* Tue Nov 10 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.14-drbl1
- Reverted to use http://free.nchc.org.tw/ubuntu for ubuntu_mirror_url_def and ubuntu_mirror_security_url_def in drbl-ocs.conf. Less network connection issue when creating Clonezilla live for Clonezilla team.
* Tue Nov 10 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.13-drbl1
- Adding swapfile.sys in the files list to be removed in ocs-rm-win-swap-hib. Thanks to Bartosz Bątorek <bartosz.batorek _at_ gmail com> for suggesting this.
- Avoiding TUI messages overriding the error messages in ocs-live-restore.
Thanks to Stew Fisher <stewart.fisher _at_ oncology ox ac uk> for
reporting this issue.
* Tue Nov 3 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.12-drbl1
- Bug fixed: Avoid using the preserved word of grub2 "prefix" in the grub.cfg. Thanks to Joey3000. (https://github.com/stevenshiau/clonezilla/issues/13)
- Bug fixed: Failed to deal with partition name with extra "p", like: *cciss*, *mmcblk*, *md*, *rd*, *ida*, *nvme*, Thanks to quozl for reporting this bug. (https://github.com/stevenshiau/clonezilla/issues/14)
- Bug fixed: Use fatresize to resize FAT file system instead of parted since resize function is no more in parted >= 3. Thanks to quozl for reporting this bug. (https://github.com/stevenshiau/clonezilla/issues/16)
* Mon Nov 2 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.11-drbl1
- Testing $GRUB_CFG if exists in drbl-ocs-live-prep.
* Mon Nov 2 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.10-drbl1
- Bug fixed: wait_for_udevd should be after main settings in ocs-run.
- More tests about if $GRUB_CONF exists before going on in some functions of ocsmgrd and drbl-ocs about grub2 uEFI network boot.
* Sat Oct 31 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.9-drbl1
- Check if file $GRUB_CONF exists before going on in hide_reveal_grub_efi_ent and some functions of drbl-functions.
* Thu Oct 29 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.8-drbl1
- Since the bug about xserver-xorg-legacy was fixed. Removing xserver-xorg-legacy from the packages list in create-gparted-live. (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802544)
* Wed Oct 28 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.7-drbl1
- Adding f2fs in the support fs of partclone in drbl-ocs.conf.
- Bug fixed: vi instead of vim existing on GParted live system.
- Adding xserver-xorg-legacy on GParted live to avoid this bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802544
* Mon Oct 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.6-drbl1
- Enabled ttyS* for systemd in GParted live.
* Tue Oct 06 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.5-drbl1
- Reverted to use http://free.nchc.org.tw/debian for debian_mirror_url_def in drbl-ocs.conf. Too frequent "Hash Sum mismatch" for some Debian mirror sites.
* Mon Oct 05 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.4-drbl1
- Bug fixed: Update EFI NVRAM only when restoring disk.
* Wed Sep 30 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.3-drbl1
- Bug fixed: when multiple disks contain grub root partition, ocs-install-grub detected the root partition outside the restored ones.
* Tue Sep 29 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.2-drbl1
- A better way to get the autologin account is used in S03prep-drbl-clonezilla for both ocs and drbl.
* Tue Sep 22 2015 Steven Shiau <steven _at_ nchc org tw> 3.18.1-drbl1
- ocsmgrd now reveals local-disk for uEFI netboot by default, and no more using ":" in the file name of uEFI netboot. It's the same with that of patched grub2 on CentOS, i.e. something like: grub.cfg-01-00-0c-29-1d-9a-d1
* Mon Sep 21 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.11-drbl1
- Update Forcevideo for GParted live so that it will work on the latest Debian Sid.
* Mon Sep 21 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.10-drbl1
- Enable syntax on and dark background for vim in DRBL live.
- In DRBL live, when only netboot config files (/tftpboot/nbi_img/pxelinux.cfg/default and /tftpboot/nbi_img/grub-efi.cfg/grub.cfg) are required to be updated once, make sure it only be updated once. No need to update for every clients. This would reduce runtime massively when client machines are many.
* Sun Sep 20 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.9-drbl1
- Bug fixed: commenting clonezilla job in ocs-live-run-menu for Clonezilla SE in DRBL live after it is done was not working.
- The uEFI lable should be converted to one word otherwise ocsmgrd will fail to parse it.
* Fri Sep 18 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.8-drbl1
- Bug fixed: ocsmgrd failed to process the client-live-client of grub part for uEFI netboot.
* Fri Sep 18 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.7-drbl1
- Now ocsmgrd will create grub uEFI network file like: grub.cfg-01:00:50:56:01:01:01 so that it can work with the embedded config file in drbl-gen-grub-efi-nb.
* Thu Sep 17 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.6-drbl1
- Comments about ocs_lang_for_pxe_ocs_live in drbl-ocs.conf was added.
- The keymap for live system should use the same keymap as that on the server first, and if not available, then use the one assigned in drbl-ocs.conf.
* Thu Sep 17 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.5-drbl1
- Bug fixed: forgot to add boot param for uEFI netboot client when ocs_client_trig_type=proc-cmdline.
* Tue Sep 15 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.4-drbl1
- Link the kernel and initrd of clonezilla live in /tftpboot/nbi_img/ to that of drbl live for DRBL live system.
* Tue Sep 15 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.3-drbl1
- Forced to remove gnash. HTML5 is more popular and flash is getting disabled by a lot of websites.
- New boot parameter "dcs_put_dticons" was added to control if the icons on the desktop should be created or not in drbl live.
* Sat Sep 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.2-drbl1
- Add support for using clonezilla-live in the Clonezilla SE uEFI clients.
* Thu Sep 10 2015 Steven Shiau <steven _at_ nchc org tw> 3.17.1-drbl1
- Function is_drbl_live_env is added in ocs-functions.
- No more using ocs_lang and ocs_live_keymap in drbl-ocs, they are replaced by keyboard-layouts and locales.
- Option "-p" was added so that drbl-ocs-live-prep supports the mounted or unzipped live path. Now by default the Clonezilla SE client in drbl live use lesser NFS. Most of them are live system.
* Mon Sep 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.39-drbl1
- Since most of the debian packages are compressed (xz or gzip), no more compressing the source tarball.
- Package efibootmgr was added to gparted live. (https://bugzilla.gnome.org/show_bug.cgi?id=754587)
* Mon Sep 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.38-drbl1
- Force to remove systemd-shim if not systemd init in drbl live, too.
* Fri Sep 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.37-drbl1
- Force to remove sytemd if not systemd init in drbl live.
* Thu Sep 03 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.36-drbl1
- Checking systemd-udevd in ocs-run, too.
- Option -a|--initsystem was added to create-drbl-live-by-pkg and create-drbl-live.
* Thu Aug 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.35-drbl1
- The S03prep-drbl-clonezilla of drbl-live did not parse username from /proc/cmdline.
* Thu Aug 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.34-drbl1
- The S03prep-drbl-clonezilla of drbl-live did not put LIVE_USERNAME in /run/live/live-config.
- Added util-linux and gdisk info in the files and versions list Info-packages.txt of image directory.
- Adding option --noclear for agetty for tty autologin. It's easier to see the booting messages in clonezilla/drbl/gparted live.
* Thu Aug 20 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.33-drbl1
- Make sure no extra white space in the end of ocs_live_run and ocs_live_extra_param.
* Wed Aug 19 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.32-drbl1
- Not only eno*, but also other NIC name like enp* will be searched in ocs-live-netcfg.
- Program gl-live-netcfg now supports NIC name en*, and better way to detect linking status.
- Enable password login for sshd in GParted live. By default the sshd is not started.
* Sun Aug 16 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.31-drbl1
- The configuration for NIC eno* is enabled in ocs-live-netcfg.
* Thu Aug 13 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.30-drbl1
- Switched to use "http://httpredir.debian.org/debian" instead of "http://http.debian.net/debian" for Debian mirror in drbl-ocs.conf.
- Added /EFI/debian/grubx64.efi in known_efi_boot_file_chklist of update-efi-nvram-boot-entry.
* Wed Aug 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.29-drbl1
- Bug fixed: Option "-C" failed to pass to partclone in ocs-onthefly when option "-icds" is used for GPT disk.
* Tue Aug 11 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.28-drbl1
- Package zerofree was added in the packages list for GParted live.
- Proportition GPT partition layout could be created by the option "-k1" (ocs-onthefly).
* Tue Aug 11 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.27-drbl1
- Program ocs-expand-gpt-pt was added.
- Proportition GPT partition layout could be created by the option "-k1".
* Tue Aug 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.26-drbl1
- Bug fixed: when the image saved from sda, for example, was restored to sdb, the swap parttion was not restored correctly due to function get_swap_partition_sf_format failed to parse the file sdb-pt.sf.
* Mon Aug 03 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.25-drbl1
- The "--print-id" of sfdisk is deprecated in favour of "--part-type". Program ocs-get-part-info has the corresponding change.
- The output of sfdisk >= 2.26 has the format "type=" instead of "Id=". The corresponding changes have to be done in ocs-functions.
* Fri Jul 31 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.24-drbl1
- A better mechanism was added to get the linking status of network card in ocs-live-netcfg.
- Bug fixed: failed to process LVM with snapshots. Thanks to Shaun Rowland for providing the patch. (https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/075d3f5a/#f533/628c)
* Sat Jul 25 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.23-drbl1
- Bug fixed: failed to continue after trying to save the partition table for PV on disk.
- Bug fixed: failed to save image for PV on multiple partitions. Thanks to SLLabs Louis for the patch.
(http://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/075d3f5a/?limit=25#f533)
* Thu Jul 23 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.22-drbl1
- The output of sgdisk will be logged in clonezilla.log, too.
- Separating the option "-a" of df in different cases in prep-ocsroot.
* Wed Jul 22 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.21-drbl1
- Bug fixed: option "-k1" failed due to ocs-expand-mbr-pt failed to read the output of sfdisk >= 2.26.
* Tue Jul 21 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.20-drbl1
- Using the same mechanism to deal with GPT partition table in ocs-onthefly for disk to disk cloning.
* Mon Jul 20 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.19-drbl1
- When restoring the image of a GPT disk, if the file "sda-pt.sf" for example is dumped by sfdisk >= 2.26, use sfdisk in higher priority than gdisk.
- Bug fixed: the output file of update-efi-nvram-boot-entry failed to assign the correct variables.
* Mon Jul 20 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.18-drbl1
- Bug fixed: efibootmgr >= 0.12 has newer output format. Thanks to johnv-valve for reporting this (https://github.com/stevenshiau/clonezilla/issues/9).
* Sun Jul 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.17-drbl1
- When /home/partimag is a mount point, prep-ocsroot should use "skip" as the default item. Thanks to Bruce Solomon [rufovillosum _at_ yahoo com].
* Thu Jul 09 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.16-drbl1
- Bug fixed: sfidsk >= 2.26 does not support -C, -H, and -S. Skip using that when sfdisk >= 2.26, especiall in ocs-onthefly. Thanks for Dorzalty reporting this: https://sourceforge.net/p/clonezilla/discussion/Help/thread/8a7397fc
* Tue Jul 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.15-drbl1
- Enabled vmfs3 and vmfs5 since partclone 0.2.79 solved the issue.
* Tue Jun 23 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.14-drbl1
- Adding the support for NVME device.
* Thu Jun 18 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.13-drbl1
- The useless note about option "-z3" was removed. Thanks to Marc Grondin (marcfgrondin _at_ gmail com) for reporting this.
* Thu Jun 18 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.12-drbl1
- Adding "net.ifnames=0" in the boot parameters of ocs-live-boot-menu for Clonezilla/DRBL/GParted live system. One day we will switch to the predicable network device name, but not now.
* Wed Jun 17 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.11-drbl1
- "ps -q" in drbl-ocs is only for SysV, we have to use "ps --pid" so that it will work both in BSD and SysV GNU/Linux system.
* Tue Jun 02 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.10-drbl1
- Adding packages gddrescue and ddrescueview for GParted live in create-gparted-live. (https://bugzilla.gnome.org/show_bug.cgi?id=750240).
* Sun May 31 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.9-drbl1
- Using the ipxe package from Debian, no more packaging that. Therefore the correspoing programs (ocs-iso, ocs-live-dev, ocs-live-boot-menu, and create-drbl-live) were modified to fit that.
* Fri May 29 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.8-drbl1
- Bug fixed: sfidsk >= 2.26 does not support -C, -H, and -S. Skip using that when sfdisk >= 2.26. Thanks to Matt Ross for reporting this (https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/1734996f).
* Thu May 28 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.7-drbl1
- Functions confirm_continue_or_not_default_quit, confirm_continue_or_not_default_continue, and confirm_continue_no_default_answer were moved from ocs-functions.
* Thu May 28 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.6-drbl1
- Making S03prep-drbl-clonezilla for DRBL live work with systemd.
- Turn on the ssh password remote login in drbl live, while still using tcpwrapper to block it.
- Functions confirm_continue_or_not_default_quit, confirm_continue_or_not_default_continue, and confirm_continue_no_default_answer were moved to drbl-functions.
* Wed May 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.5-drbl1
- Functions add_opt_in_pxelinux_cfg_block, remove_opt_in_pxelinux_cfg_block, add_opt_in_grub_efi_cfg_block and remove_opt_in_grub_efi_cfg_block were moved from ocs-functions to drbl-functions.
* Wed May 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.4-drbl1
- Program create-ubuntu-live now supports Ubuntu Linux Wily.
* Fri May 22 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.3-drbl1
- Using "isohybrid --uefi" to make dd iso file work. Thanks to Patrick Verner and Kubuist for this.
- Only for those non-stop cases we will clean the GRUB UEFI NB config files in drbl-ocs. Otherwise the local-disk boot in grub.cfg normally won't work.
* Thu May 21 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.2-drbl1
- Bug fixed: some bash errors were fixed in ocs-resize-part.
- Supporting local boot in uEFI mode after clonezilla job is done.
- The clonezilla-se-client and local-disk menuentry in GRUB EFI NB not could be hidden or revealed.
- Bug fixed: "drbl-ocs stop" won't kill itself by killing its ppid.
- More complete GRUB EFI NB menus added in this version. Thanks to Danny Russ | KSC for helping this GRUB EFI network boot solution.
* Mon May 18 2015 Steven Shiau <steven _at_ nchc org tw> 3.16.1-drbl1
- File system overlay was added as one of the known file systems in prep-ocsroot.
- A better mechanism was used to parse the boot parameters in ocs-run so that it could deal with that from grub efi network booting.
- Bug fixed: set-netboot-1st-efi-nvram failed to keep uEFI network
- Bug fixed: ocs-resize-part failed to run resize program for parted >= 3.
* Thu May 14 2015 Steven Shiau <steven _at_ nchc org tw> 3.15.6-drbl1
- Package libpam-systemd and policykit-1 were added in pkgs_for_task_xfce_desktop of create-drbl-live-by-pkg.
* Wed May 13 2015 Steven Shiau <steven _at_ nchc org tw> 3.15.5-drbl1
- Switching to use "union=overlay" in DRBL/Clonezilla/GParted live. It's the default union filesystem for Linux kernel v4, and also available in Ubuntu Vivid's linux kernel.
* Wed May 13 2015 Steven Shiau <steven _at_ nchc org tw> 3.15.4-drbl1
- Function get_latest_kernel_ver_in_repository of ocs-functions was improved so it can filter Linux kernel version 4 or later.
* Wed May 06 2015 Steven Shiau <steven _at_ nchc org tw> 3.15.3-drbl1
- Language files for Hungarian were added. Thanks to Greg Marki (info.mlc _at_ freemail hu) for providing the files.
* Mon May 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.15.2-drbl1
- Bug fixed: start-drbl-live.service should run before display-manager.service.
* Mon May 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.15.1-drbl1
- Bug fixed: wrong file name for start-drbl-live.service.
* Mon May 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.26-drbl1
- Bug fixed: start-drbl-live service for systemd not implemented in drbl live.
* Mon May 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.25-drbl1
- Switching to systemd instead of sysvinit-core for DRBL live.
* Mon Apr 20 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.24-drbl1
- Calibrating time before running s3fs and cloudfuse in prep-ocsroot.
* Sun Apr 19 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.23-drbl1
- Updating the comments about swift in prep-ocsroot.
* Sun Apr 19 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.22-drbl1
- Adding S3 and Swift in the prep-ocsroot menu.
* Fri Apr 17 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.21-drbl1
- File ocs-tune-conf-for-s3 was renamed as ocs-tune-conf-for-s3-swift so it can be used for both S3 and Swift repository.
* Thu Apr 16 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.20-drbl1
- A mechanism to avoid cloudfuse with ecryptfs was added because there is
an similar issue as https://github.com/s3fs-fuse/s3fs-fuse/issues/166
* Sat Apr 11 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.19-drbl1
- A mechanism to avoid AWS S3 with ecryptfs was added because there is
an issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/166
* Tue Apr 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.18-drbl1
- The program ocs-tune-conf-for-s3 was added so it can be used for AWS S3.
* Fri Apr 03 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.17-drbl1
- util-linux >= 2.26 removes support for "sfdisk -R". Therefore we switched to "blockdev --rereadpt". Thanks to Ismael (razzziel _at_ users sf net) for reporting this.
* Wed Apr 01 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.16-drbl1
- Enabling the updates, security and drbl repository settings in Clonezilla/DRBL/GParted live.
* Mon Mar 30 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.15-drbl1
- Bug fixed: ocs-onthefly failed to clone swap partition for GPT disk. Thanks to Uwe Dippel for reporting this issue (https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/907b3c87).
* Sun Mar 29 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.14-drbl1
- Adding a link file ocs-prep-home to prep-ocsroot.
- Adding a link file ocs-cvt-dev to cnvt-ocs-dev.
- A better mechanism to parse the PV was implemented. Thanks to Uditha De Silva.
* Wed Mar 25 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.13-drbl1
- Improvement: ocs-install-grub now could handle the grub boot loader is on root partition instead of MBR.
* Mon Mar 23 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.12-drbl1
- Adding parsing mechanism for boot parameter "components" in function get_live_boot_param of ocs-functions.
* Mon Mar 16 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.11-drbl1
- Put start-ocs-live in the path /etc/ocs of Clonezilla live.
* Sun Mar 15 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.10-drbl1
- Make start-ocs-live.service and start-gparted-live.service after systemd-user-sessions.service so that the screen won't be re-set by something like setupcon.
- Set the TERM as linux for non-framebuffer mode in ocs-lang-kbd-conf and S05kbd-conf (gparted live) so that color output can be shown.
* Sun Mar 15 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.9-drbl1
- Disable the booting status, otherwise the messages might be shown on the dialog menu (of keyboard/language for Clonezilla/GParted live) which is annoying.
* Sun Mar 15 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.8-drbl1
- Failed to put start-gparted-live in /etc/gparted-live/ in gparted-live-hook.
* Sat Mar 14 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.7-drbl1
- Prevents all messages, except emergency (panic) messages in GParted live booting console.
- Bug fixed: wrong path for start-gparted-live.
- TERM was not set correctly when configuring keyboard for GParted live.
* Sat Mar 14 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.6-drbl1
- Bug fixed: systemd for GParted live was not working.
* Sat Mar 14 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.5-drbl1
- Bug fixed: function is_systemd_init was not defined for create-gparted-live.
* Sat Mar 14 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.4-drbl1
- Switching to use systemd in create-gparted-live.
- Upstart is only used for Utopic in create-ubuntu-live. For Vivid the systemd is used.
- Option "--mirror-chroot-updates" in create-gparted-live was removed since it does not exist for live-build v4.
* Fri Mar 13 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.3-drbl1
- When terminal is dumb, force it as vt102 in ocs-lang-kbd-conf.
* Fri Mar 13 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.2-drbl1
- Dropping stdin and stdout assignment in start-ocs-live.service. Use the default values.
- Wrong agetty path in serial-console-autologin.conf.
- For non-framebuffer mode, TERM was not defined. It's OK for sysv/upstart, but not for systemd.
* Thu Mar 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.1-drbl1
- Bug fixed: forgot to enable start-ocs-live.service.
* Thu Mar 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.14.0-drbl1
- Adding systemd for Clonezilla live.
* Tue Mar 09 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.32-drbl1
- Default to remove the ntfs volume dirty flag after it's restored.
- Default to remove the dbus machine id file (/var/lib/dbus/machine-id) after a GNU/Linux system is restored.
* Thu Mar 05 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.31-drbl1
- Some ecryptfs-related options were moved to drbl-functions.
* Wed Mar 04 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.30-drbl1
- Two more parameters ocs_ecryptfs_cipher and ocs_ecryptfs_key_bytes could be assigned in the boot parameters.
* Thu Feb 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.29-drbl1
- A boot parameter "ocs_dmesg_n" was added so that it can be used to set the level at which logging of messages is done to the console. If not assigned, prevents all messages, except emergency (panic) messages, i.e. n=1. Thanks to Greg Bell.
* Wed Feb 11 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.28-drbl1
- Bug fixed: the single white space for target_parts should be treated as nothing. Thanks to Borksoft for reporting this issue.
* Mon Feb 09 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.27-drbl1
- Switching to use mode "ubuntu" for create-ubuntu-live, no more using "debian" mode. This is done by using 'lb config --bootappend-live "boot=live config username=user"' for create-*-live.
* Sat Feb 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.26-drbl1
- Make sure ocs/ocs-live.d/S00ocs-start work for upstart both in live-config v3 and v4.
* Tue Feb 03 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.25-drbl1
- A parameter "split_suf_len" was added in drbl-ocs.conf so that it can be used to specify the suffix length when spliting an image.
- The suffix length of each image chunk now could be >=2.
- For webdav image repository, the suffix length of split command was changed to 3 so it could have enough chunks for large file (~2.8 TB).
* Mon Feb 02 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.24-drbl1
- Bug fixed: S03prep-drbl-clonezilla failed to enable sshd password auth for live-build v4 environment..
- create-*-live: Force to add "lb config --initsystem sysvinit".
* Sat Jan 31 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.23-drbl1
- File name typo fixed: ocs-tune-conf-for-wevdav -> ocs-tune-conf-for-webdav.
* Sat Jan 31 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.22-drbl1
- Bug fixed: function is_davfs_ocsroot failed to check davfs ocsroot on Debian.
* Sat Jan 31 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.21-drbl1
- Improved the mechanism to check if webdav server is mounted or not.
* Fri Jan 30 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.20-drbl1
- Failed to accept webdav_server as a correct type in prep-ocsroot.
- A better mechanism was added to check if webdav server is mounted or not.
* Thu Jan 29 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.19-drbl1
- Bug fixed: Forgot to put the default values for davfs2 in drbl-ocs.conf.
* Thu Jan 29 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.18-drbl1
- With the workaround proposed by Thomas Tsai, now the image repository could be on WebDAV server.
* Tue Jan 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.17-drbl1
- Bug fixed: Gsplash.png should be interlaced otherwise it can not be shown in grub2.
* Tue Jan 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.16-drbl1
- Bug fixed: accidentally disabled --apt-source-archives in create-*-live.
* Tue Jan 27 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.15-drbl1
- Bug fixed: S03prep-drbl-clonezilla failed to enable PasswordAuthentication.
- Bug fixed: Debian repository redirector should be http.debian.net/debian instead of http.debian.org/debian.
* Sun Jan 25 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.14-drbl1
- Setting debian_mirror_url_def as http://http.debian.org/debian (redirector) in drbl-ocs.conf.
- Swap info is also listed in dev-fs.list. More comments were added in the beginning of dev-fs.list.
- Make sure that deprecated program create-cciss-mapping is removed.
- Programs create-debian-live, create-ubuntu-live, create-drbl-live and create-gparted-live now should work for both live-build v3 and v4.
* Fri Jan 23 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.13-drbl1
- GParted Live boot picture was updated. Thanks to Curtis Gedak and his wife.
- A file "dev-fs.list" containing device and file system list is added to Clonezilla image.
- To avoid the password login of sshd being disabled by live-config, S03prep-drbl-clonezilla will enable it when booting.
* Mon Jan 19 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.12-drbl1
- Package xresprobe does not exist in Debian repository, so it's removed from the packages list in create-gparted-live.
* Mon Jan 19 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.11-drbl1
- A different name "chromium_ext4" for the ext4 on ChromiumOS/ChromeOS's root fs will be given in ocs-get-part-info. This is due to it can not be saved correctly by Partclone due to some special features which are not compatible to Linux Extfs. We have to deal with dd.
* Fri Jan 16 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.10-drbl1
- Bug fixed: ssh service was not started in rc1.d in Ubuntu 14.10 when running Clonezilla job.
* Mon Jan 12 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.9-drbl1
- Using functions inform_kernel_partition_table_changed and clean_mbr_gpt_part_table in ocs-onthefly and some functions in ocs-functions.
- Bug fixed: pvcreate failed to create PV on a disk with existing partition table.
- Program will quit if encrypted image is assigned for restoring in Clonezilla SE.
- Only unencrypted image could be restored in Clonezilla SE.
* Wed Jan 07 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.8-drbl1
- Bug fixed: the description about choosing image name in ocs-img-2-vdk was wrong.
- Adding encrypting, decrypting and p2v menus in ocs-sr.
- Bug fixed: ocs-img-2-vdk did not remove the temp downloaded clonezilla live iso.
* Tue Jan 06 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.7-drbl1
- Bug fixed: Forgot to change the partition or LV permission after image is converted by ocs-cvtimg-comp.
- Avoid using "rm -r" if possible in ocs-functions.
- The created temp dirs in /tmp should be removed after ocs-restore-mdisks is run.
- Bug fixed: ocs-img-2-vdk failed to run for encrypted image.
* Mon Jan 05 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.6-drbl1
- Bug fixed: ocs-restore-mdisks failed to run for encrypted image.
* Mon Jan 05 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.5-drbl1
- Using functions get_disk_list_from_img and get_parts_list_from_img to deal with all the image info.
- All the image related programs were improved to support encrypted image. They are create-ocs-tmp-img, ocs-chkimg, ocs-cvtimg-comp, ocs-img-2-vdk, ocs-restore-mdisks.
- Bug fixed: the volume size unit is MB, while "M" (MiB) was used for split in ocs-cvtimg-comp.
* Sat Jan 03 2015 Steven Shiau <steven _at_ nchc org tw> 3.13.4-drbl1
- Adding return code for function prepare_ecryptfs_mount_point_if_necessary.
- Adding functions get_ecryptfs_info and put_ecryptefs_tag_file_in_img so they can be reused.
- Adding programs ocs-decrypt-img and ocs-encrypt-img so that the existing image could be encrypted or decrypted.
* Mon Dec 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.13.3-drbl1
- A better mechanism to deal with the end of upstart was implemented for S00ocs-start.
* Fri Dec 26 2014 Steven Shiau <steven _at_ nchc org tw> 3.13.2-drbl1
- Putting prepare_ecryptfs_mount_point_if_necessary after run again prompt no matter it's for saving or restoring.
- Adding option "-or, --ocsroot" for create-ocs-tmp-img so that it can be used for encrypted image case.
- Bug fixed: create_temp_image_for_different_target_dev_name_if_necessary failed to use the temp ocsroot for encrypted case.
- Bug fixed: when checking if LVM exists in restoring, we should only check that in the image dir, not in the local partitions layout.
* Thu Dec 25 2014 Steven Shiau <steven _at_ nchc org tw> 3.13.1-drbl1
- Adding encryption function for Clonezilla image. Now it's OK for Clonezilla live, not yet for Clonezilla SE.
- Bug fixed: the volume size unit is MB, while "M" (MiB) was used for split.
- Set the default volume size as 4096 MB instead of 2000 MB.
- Adding option "-i, --image-size" description in the usage of ocs-sr (https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/a5814dab)
- Function name confirm_continue_or_not_default_quit in ocs-functions was changed to confirm_continue_or_default_quit.
* Thu Dec 11 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.9-drbl1
- Package xresprobe does not exist in Debian repository, so it's removed from the packages list in create-drbl-live-by-pkg.
* Wed Dec 10 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.8-drbl1
- Now i586 instead of i486 Clonezilla live is in the stable release, therefore the corresponding changes were done.
* Mon Dec 01 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.7-drbl1
- Temporarily disabled vmfs3 and vmfs5 due to an issue (https://github.com/glandium/vmfs-tools/issues/12).
* Wed Nov 12 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.6-drbl1
- Supporting i586 linux image kernel Clonezilla live because Debian Sid now provides i586 linux-image instead of i486 one..
* Sun Nov 09 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.5-drbl1
- Program ocs-run was improved by better way to detect systemd as init.
* Wed Nov 05 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.4-drbl1
- Function cciss_dev_map_if_necessary of ocs-functions was removed.
- Deprecated program create-cciss-mapping was removed.
* Tue Nov 04 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.3-drbl1
- A better way to deal with --rsyncable option of pigz was implemented, too.
* Mon Nov 03 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.2-drbl1
- A better way to deal with --rsyncable option of gzip was implemented.
(https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/8d5f80a6/)
* Mon Nov 03 2014 Steven Shiau <steven _at_ nchc org tw> 3.12.1-drbl1
- Adding Ubuntu vivid support for create-ubuntu-live.
- Adding support for device name format like /dev/rd/c0d0 and /dev/ida/c0d0 RAID cards. (https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/e82e1c04/)
* Fri Oct 24 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.15-drbl1
- Bug fixed: start-stop-daemon should be reverted when creating GParted live.
* Thu Oct 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.14-drbl1
- Bug fixed: the added modules phram and mtdblock were not actually put for GParted live.
* Thu Oct 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.13-drbl1
- Due to some reason phram and mtdblock were not put in the initramfs of GParted live, while they are shown in Clonezilla live. Now they are forced to be added. Thanks to dud225 for reporting this issue. (http://gparted-forum.surf4.info/viewtopic.php?id=17263).
* Thu Oct 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.12-drbl1
- Bug fixed: Function remove_cdebootstrap-helper-diverts was renamed as remove_start_stop_daemon_diverts, we should use it for GParted live.
* Thu Oct 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.11-drbl1
- Keeping kernel untouched for GParted live. Otherwise some required modules might be removed accidently.
* Thu Oct 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.10-drbl1
- Adding gsmartcontrol menu for GParted live.
* Thu Oct 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.9-drbl1
- Typo about "Portuguese (Brazilian)" in GParted live was fixed. (https://bugzilla.gnome.org/show_bug.cgi?id=738258).
- Typos about the exit dialog in GParted live were fixed.
* Wed Oct 15 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.8-drbl1
- Force to add "consolekit sysvinit-core" with lightdm in create-drbl-live-by-pkg because lightdm depends on libpam-systemd | consolekit. Otherwise when systemd is removed, lightdm even task-xfce-desktop will be removed in drbl live.
- Reverted to the original method to search partitions in ocs-install-grub. The latest fixed method was wrong.
* Wed Oct 08 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.7-drbl1
- Bug fixed: options "-fsck-src-part" and ""-fsck-src-part-y" were duplicated in ocs-onthefly expert mode.
- Bug fixed: The input harddrive of ocs-install-grub might be more than one, therefore ocs-install-grub should take that into consideration.
- Now Clonezilla could support PV on disk, not only on partition.
* Thu Oct 02 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.6-drbl1
- Updating prep-ocsroot to run nfs-common service only when it exists.
- Batch mode of ocs-sr failed due to the last modification about restoring image of partitioin to differnt partition name.
* Mon Sep 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.5-drbl1
- Boot parameter "nodmraid" was added in Clonezilla live.
* Mon Sep 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.4-drbl1
- Post run commands of Clonezilla after restoring will be shown specifically.
* Mon Sep 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.3-drbl1
- Bug fixed: manual page of ocs-install-grub was wrong in grub partition description.
* Mon Sep 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.2-drbl1
- Bug fixed: ocs-install-grub wrongly parsed Clonezilla live boot media as grub root partition for some cases, e.g. when restoring /dev/md126* devices.
* Sun Sep 28 2014 Steven Shiau <steven _at_ nchc org tw> 3.11.1-drbl1
- Programs ocs-sr and ocs-functions were updated to support restoring image of partition to different name partition.
- Options -f|--from-part and -d|--to-part were added for create-ocs-tmp-img. It's intended to be used for restoring an image of partition to different partition name.
- Option -f|--force was added for cnvt-ocs-dev. The support for device names md* was added, too.
- Device name /dev/md* is supported. With boot parameter "nodmraid", now it's possible fakeraid/softraid could be supported. Not well tested though.
- Bug fixed: only device name /dev/mmcblk0p* worked in function get_diskname of ocs-functions. Those /dev/mmcblk[1-9]p* failed.
* Wed Sep 10 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.33-drbl1
- Using vmwgfx.enable_fbdev=1 instead of vmwgfx.enable_fbdev=no in ocs-live-boot-menu. Now we use vesafb instead of uvesafb in both Debian-based and Ubuntu-based Clonezilla live. No more uvesafb for Ubuntu-based one.
* Thu Sep 04 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.32-drbl1
- Adding iproute2 and iw in packages list of GParted live of create-gparted-live.
* Fri Aug 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.31-drbl1
- Program MC_HxEd was removed from GParted live because it's not maintained anymore.
- Program zenity instead of gdialog is used in gl-shutdown-menu.
* Tue Aug 26 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.30-drbl1
- Force to remove systemd package in clonezilla live and gparted live.
* Tue Aug 26 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.29-drbl1
- Force to remove systemd package in drbl live.
* Wed Aug 20 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.28-drbl1
- Using debian_type="minbase" in create-drbl-live so that it won't fail due to systemd-sysv is installed.
- Adding packages manpages and info in the packages list of create-drbl-live-by-pkg since debian_type="minbase" is used.
* Tue Aug 19 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.27-drbl1
- File ocs-live-hook.conf was updated for language file tr_TR.
* Mon Jun 30 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.26-drbl1
- The clonezilla-live.log redirected by tee was removed from ocs-live-run-menu. It is duplicated because /var/log/clonezilla.log has the same output, and it causes the distoration of partclone output when running in zh_TW.UTF-8 environment.
* Thu Jun 26 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.25-drbl1
- Adding partclone in GParted live. (https://bugzilla.gnome.org/show_bug.cgi?id=732039)
* Mon Jun 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.24-drbl1
- Config file drbl-ocs.conf was updated to add more comments about udpcast sender options. Thanks to Pretzel. Ref: http://sourceforge.net/p/clonezilla/discussion/Clonezilla_server_edition/thread/6e1e87d4/
* Sun Jun 22 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.23-drbl1
- Forced to use LC_ALL=C to run printf in ocs-expand-mbr-pt. This could avoid the possible locales issue (https://sourceforge.net/p/clonezilla/bugs/197/).
* Mon Jun 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.22-drbl1
- Dropping the usage for progress option "-V' of ntfsclone, which was patched by Thomas Tsai. Now ntfsclone (e.g. v2014.2.15AR.1) has an option "-V" for showing version number. Therefore it should not be used anymore.
* Mon Jun 09 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.21-drbl1
- Package xz-utils was added in GParted live so that the initrd could be compressed as xz format.
* Sun Jun 08 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.20-drbl1
- Due to an issue of command "eject", "noeject" was added in the boot parameters of GParted live iso file.
* Mon Jun 02 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.19-drbl1
- To avoid giving wrong result, do not show it's successful or not after jfbterm is finished in ocs-live-run-menu. Let user to check the log file.
- The log file for ocs-live-run-menu is changed as /var/log/clonezilla-live.log.
* Sun Jun 01 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.18-drbl1
- Program ocs-live-run-menu was improved to give more output info for command is run in jfbterm.
- Program cnvt-ocs-dev now could convert SD device (mmcblk0). Thanks to joyer99 for reporting this issue (https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/40636cdd/?limit=25).
* Sat May 31 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.17-drbl1
- Bug fixed: ocs-live-run-menu was improved so that it can run variable ocs_live_run like: ocs_live_run="ocs-restore-mdisks -batch -p '-g auto -e1 auto -e2 -cm -r -j2 -k1 -p true' ask_user sda sdb". Thanks to Coudy and jbweng2008 _at_ 163 com for reporting this issue.
* Fri May 30 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.16-drbl1
- Updating ocs-live-hook.conf for Slovak language.
* Thu May 29 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.15-drbl1
- If host machine is x86 arch, not x86-64/amd64, then we force to use x86 arch for KVM in ocs-img-2-vdk.
* Tue May 27 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.14-drbl1
- Packages qemu-kvm and qemu-utils were added in the packages list of create-drbl-live-by-pkg.
* Tue May 27 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.13-drbl1
- The options ( -a, -i, and -r) to assign Clonezilla live as template were added in ocs-img-2-vdk.
* Mon May 26 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.12-drbl1
- Function download_clonezilla_live was moved from drbl-ocs-live-prep to ocs-functions so that it could be reused.
- Bug fixed: failed to parse correct option "-sc" in interactive mode of ocs-cvtimg-comp.
- Prompt about arch of USAGE in drbl-ocs-live-prep was improved.
- Program ocs-img-2-vdk was added to convert Clonezilla image to virtual disk file (qcow2 or vmdk) via KVM.
* Sun May 18 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.11-drbl1
- Bug fixed: The boot media should not be mounted again as read-write mode in ocs-live-save. Otherwise when rebooting, due to the squashfsfs are mounted, it can not be unmounted.
* Sat May 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.10-drbl1
- Accepting -b|-batch|--batch options for ocs-restore-mdisks. A typo in the USAGE message was fixed.
* Thu May 15 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.9-drbl1
- Packages, lsof, psmisc, dnsutils, wget, ftp, bzip2, zip, unzip, w3m and gsmartcontrol were added in GParted live.
- Startup page of netsurf was assigned to GParted live manual.
* Fri May 02 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.8-drbl1
- Adding support for utopic in create-ubuntu-live, and dropping the support for lucid and quantal.
* Fri May 02 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.7-drbl1
- Bug fixed: 1-2-mdisks failed to reinstall grub due to ocs-restore-mbr does not honor the temp $ocsroot variable.
* Thu May 01 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.6-drbl1
- Bug fixed: Restoring an LVM partition prevents any following non-LVM partitions from being restored. Thanks to Ian Horton for the patch.
* Sat Apr 26 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.5-drbl1
- Bug fixed: two extra grub 2.02 modules gfxterm_background and gfxterm_menu are added now when creating bootx64.efi and bootxia32.efi by gl-gen-grub2-efi-bldr. Otherwise the backgroud won't be shown. Thanks to Ady (ady-sf _at_ hotmail com) for reporting this issue.
* Fri Apr 25 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.4-drbl1
- Bug fixed: live-boot was upgraded to 4.x. Setting "--cache-indices" of live-config as true so that live-boot won't be upgraded after filesystem.squashfs is created.
* Wed Apr 23 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.3-drbl1
- Adding program set-netboot-1st-efi-nvram.
- Applying set-netboot-1st-efi-nvram after update-efi-nvram-boot-entry.
* Thu Apr 10 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.2-drbl1
- Packages screen, rsync, iputils-ping, telnet, traceroute and bc were added in GParted live.
* Fri Apr 04 2014 Steven Shiau <steven _at_ nchc org tw> 3.10.1-drbl1
- The create-*-live files were broken due to the apt version 1.0 and live-boot/live-config 4.x alpha in the Sid repository. No more using aptitude for create-drbl-live. All of them are in apt now.
* Fri Mar 28 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.49-drbl1
- Bug fixed: ssh service was not working in Saucy's clonezilla SE client mode.
* Sat Mar 22 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.48-drbl1
- Bug fixed: autoproductname should filter the characters "()[]{}". Thanks to Coudy* for reporting this issue (https://sourceforge.net/p/clonezilla/bugs/193/).
* Wed Mar 19 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.47-drbl1
- The paramger "ocs_prompt_mode" takes effect when saving an image.
* Tue Mar 18 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.46-drbl1
- Suppress all the space of time got in get_img_create_time because it might be used in dialog prompt.
- Bug fixed: two extra grub 2.02 modules gfxterm_background and gfxterm_menu are added now when creating bootx64.efi and bootxia32.efi by ocs-gen-grub2-efi-bldr. Otherwise the backgroud won't be shown.
* Mon Mar 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.45-drbl1
- A better way to get image created time was implemented.
* Mon Mar 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.44-drbl1
- Bug fixed: in cmd mode, an extra line was added in the confirmation messages before restorinig an image.
* Mon Mar 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.43-drbl1
- Image creating date will be shown in the prompt before restoring an image.
* Sun Mar 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.42-drbl1
- Bug fixed: after drbl service has been started, if clonezilla SE is started, the image repository should be mounted in DRBL live.
* Sat Mar 15 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.41-drbl1
- The content of "iso_sort.txt" should be a two-column list, separated by "TAB", not space, in the function gen_iso_sort_file of ocs-functions.
* Fri Mar 14 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.40-drbl1
- Sync the parse_cmdline_option of gl-functions with drbl-functions.
- The ocs_prerun* and ocs_postrun* boot parameters are sorted with "-V", not "-n".
* Fri Mar 14 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.39-drbl1
- The info to be shown in the TUI mod of countdown_or_confirm_before_restore was improved. More info will be shown.
- Variable "messages_shown_preference" in drbl.conf was moved to drbl-ocs.conf and renamed as "ocs_prompt_mode".
- A boot parameter "ocs_prompt_mode" was added so that it can be used to control the prompt mode (TUI or CMD).
* Wed Mar 12 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.38-drbl1
- Menu of KMS mode for live system will always shown by ocs-live-boot-menu.
* Wed Mar 12 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.37-drbl1
- Package xnetcardconfig was removed from create-drbl-live-by-pkg because it's no more in Debian repository and not used in DRBL live.
* Fri Mar 07 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.36-drbl1
- Sorting the isolinux.bin and boot.cat when creating iso file by genisoimage. Thanks to Ady <ady-sf _at_ hotmail com> for this suggestion.
* Thu Mar 06 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.35-drbl1
- Force to quit plymouthd when Clonezilla client is in select_in_client mode.
* Wed Mar 05 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.34-drbl1
- An option "-s|--semi-batch" was added to the sample file gen-rec-usb. It can be used to confirm only once, not every major step. Thanks to ilovecats for this suggestion.
* Mon Feb 24 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.33-drbl1
- Using -z1p instead of -z2p when saving image in the sample file gen-rec-usb.
- The way "scale=0" was not used in ocs-expand-mbr-pt. A better method is used.
- Bug fixed: toram menu for grub should use toram=filesystem.squashfs instead of toram so that it's consistent with that of syslinux.
* Fri Feb 21 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.32-drbl1
- Sync the parse_cmdline_option of gl-functions with drbl-functions.
- Bug fixed: the linking part in function ocs-live-env-prepare of ocs-functions should be kept. We should just remove the remount,rw part. Besides, the checking mechanism for linking or not has been changed to find the image. Thanks to ilovecats for reporting this issue.
* Fri Feb 21 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.31-drbl1
- The boot media should not be mounted again as read-write mode in function ocs-live-env-prepare of ocs-functions. Otherwise when rebooting, due to the squashfsfs are mounted, it can not be unmounted. Thanks to ilovecats for reporting this.
- The example "clone-multiple-usb-example.sh" was removed. Because it's in the main menu already.
- An example gen-rec-usb was added. It could be used to create a recovery USB flash drive directly from the machine.
* Thu Feb 20 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.30-drbl1
- An option -q was added to ocs-live-dev so that it can be used to use the existing image on the recovery device.
* Tue Feb 18 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.29-drbl1
- The mechanism to run scripts S[0-9][0-9]* and K[0-9][0-9]* in a directory has been improved. "$script" instead of ". $script" should be used otherwise in some cases the rest of scripts won't be run.
* Mon Feb 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.28-drbl1
- Bug fixed: Packages.bz2 on Debian repository is no more. Use Packages.gz in ocs-live-hook-functions.
- Disable remove_grpck_opt_p in ocs-live-hook because the issue was fixed in passwd 1:4.1.5.1-1.
- Package libc6-i386 should be excluded when running "deborphan -n" in ocs-live-hook-functions.
* Mon Feb 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.27-drbl1
- Package libc6-i386 was added in all AMD64 version of live system.
* Mon Feb 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.26-drbl1
- The /lib32 dir will be kept in the amd32 version of live system.
* Mon Feb 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.25-drbl1
- Function get_live_boot_param of ocs-functions will give the result "quiet_opt".
- Program ocs-live-dev and ocs-iso should also honor the boot parameter "quiet" when creating a recovery iso/zip.
* Sun Feb 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.24-drbl1
- Bug fixed: Batch mode option passed to makeboot.sh in ocs-live-dev was wrong.
* Sun Feb 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.23-drbl1
- Program ocs-live-dev was improved to directly put image and unattended mode of boot parameters to a USB device. Thanks to ilovecats for this idea.
- An option "-b" was added so that ocs-live-dev can be run in batch mode.
* Sun Feb 09 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.22-drbl1
- Function parse_cmdline_option of gl-functions was updated to accept more characters, including "[", "]", and ";".
- The correspoing files which using parse_cmdline_option were updated, too.
* Thu Feb 06 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.21-drbl1
- Function parse_cmdline_option of gl-functions was updated to accept pipe sign (|). Thanks to Fuchs (fusi1939 _at_ users sf net) for this suggestion.
* Tue Feb 04 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.20-drbl1
- Function get_latest_kernel_ver_in_repository was updated so that correct linux kernel version for Ubuntu trusty could be got due to new kernel package linux-image-3.13.0-6-lowlatency is shown.
* Mon Feb 03 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.19-drbl1
- Bug fixed: xz format for old image format (e.g. sda1.aa) was not detected (https://sourceforge.net/p/clonezilla/bugs/191/). Thanks to peter green for reporting this issue.
- Bug fixed: There is a typo for the destination partition for 2nd confirmation for local partition to local partition (https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/b99ab9e6/). Thanks to Tweed for reporting this bug.
* Tue Jan 21 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.18-drbl1
- Boot parameter "noeject" should be added for those USB stick booting config in create-drbl-live.
* Mon Jan 20 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.17-drbl1
- The "syslinux" and "isolinux" dirs of Clonezilla/DRBL/GParted live have been unified as one dir "syslinux". Thanks to Ady (ady-sf _at_ hotmail com) for this suggestion.
* Sun Jan 19 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.16-drbl1
- When "-p choose" of ocs-sr or ocs-onthefly is used, the default item of dialog menu is entering command line prompt now.
- The option "--rsyncable" was added for gzip/pigz when saving an image (https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/8d5f80a6). Thanks to lucatrv for providing this idea.
* Sat Jan 18 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.15-drbl1
- Parameter "ocs_postmode_prompt" instead of "messages_shown_preference" for the post action (reboot/poweroff/cmd/...) mode. If command line mode instead of TUI mode is desired, now we can use "ocs_postmode_prompt=cmd" in the boot parameters. This will work for both ocs-sr and ocs-onthefly.
- Deprecated function run_post_cmd_when_clonezilla_live_end of ocs-functions was removed.
- The output of command run_post_cmd_when_clone_end in ocs-onthefly is recoreded in log file, too.
* Fri Jan 17 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.14-drbl1
- Program partclone.restore is replaced by partclone.$fs in ocs-onthefly because partclone.restore will be deprecated in the future.
* Thu Jan 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.13-drbl1
- Packages.gz instead of Packages.bzip2 is used in get_latest_kernel_ver_in_repository since bzip2 one is changed to xz in Debian Sid, but Ubuntu still uses gzip and bzip2.
* Thu Jan 16 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.12-drbl1
- Pixz is used in ocs-onthefly local to remote cloning. An option to use xz as filter program was added, too.
- Switch back to lbzip2 (http://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/141facdc/?limit=50#b0a0).
* Wed Jan 15 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.11-drbl1
- Bug fixed: the grub dir name is called "grub2" for Fedora >=18, that causes check_grub_partition function failed to locate the grub partition.
* Mon Jan 13 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.10-drbl1
- Bug fixed: boot parameters of toram was accidentally removed previously.
* Sat Jan 11 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.9-drbl1
- Bug fixed: If drbl_mode is none, we should not make drbl as client's default boot menu when running "drbl-ocs stop".
* Fri Jan 10 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.8-drbl1
- Bug fixed: "noeject" is not required in the TORAM part of isolinux.cfg and syslinux.cfg. Thanks to Ady <ady-sf _at_ hotmail com> for this bug report.
* Thu Jan 09 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.7-drbl1
- Boot parameters ocs_daemonon and ocs_daemonoff for Ubuntu-based Clonezilla live failed due to upstart is not compatable with sysvinit command like "/etc/init.d/$i start".
* Mon Jan 06 2014 Steven Shiau <steven _at_ nchc org tw> 3.9.6-drbl1
- The output of blkid will be saved in the image dir as blkid.list.
* Sun Dec 29 2013 Steven Shiau <steven _at_ nchc org tw> 3.9.5-drbl1
- An initial value for next_step in function get_live_boot_param in ocs-functions was added.
* Sat Dec 28 2013 Steven Shiau <steven _at_ nchc org tw> 3.9.4-drbl1
- Bug fixed: next_step should be local variable in function get_live_boot_param in ocs-functions.
* Thu Dec 26 2013 Steven Shiau <steven _at_ nchc org tw> 3.9.3-drbl1
- An option "-y|--syslinux-ver" was added to the create-*-live, ocs-iso and ocs-live-dev so that when live system is created syslinux version can be assigned.
* Tue Dec 24 2013 Steven Shiau <steven _at_ nchc org tw> 3.9.2-drbl1
- All the install_grub_hd in ocs-onthefly and ocs-makeboot was replaced by ocs-install-grub.
* Mon Dec 23 2013 Steven Shiau <steven _at_ nchc org tw> 3.9.1-drbl1
- Comments in ocs-cvtimg-comp were updated.
- The install_grub_hd function in ocs-functions was extracted as a program "ocs-install-grub" so that it's easier to be run separately.
- Program ocs-update-initrd was added so it's can be run separately for P2V for CentOS 5 (not finished yet).
* Wed Dec 18 2013 Steven Shiau <steven _at_ nchc org tw> 3.8.30-drbl1
- If parallel compression programs are not found, ocs-cvtimg-comp will find the normal compression programs to do that.
* Sun Dec 15 2013 Steven Shiau <steven _at_ nchc org tw> 3.8.29-drbl1
- Prompt in ocs-restore-mbr was updated.
* Sun Dec 15 2013 Steven Shiau <steven _at_ nchc org tw> 3.8.28-drbl1
- The codes about restoring MBR was extracted as another program ocs-restore-mbr so it's easier to be used separately.
* Thu Dec 12 2013 Steven Shiau <steven _at_ nchc org tw> 3.8.27-drbl1
- Adding option "-nogui" for ocs-cvtimg-comp.
- Adding exit code in ocs-chkimg.
* Wed Dec 11 2013 Steven Shiau <steven _at_ nchc org tw> 3.8.26-drbl1
- Make ocs-sr's dialog menu index text shorter (convert-img-compression -> cvt-img-compression)
- Bug fixed: partition itself containing LV does not have to be checked in ocs-chkimg.
- The incomplete converted image file created by ocs-cvtimg-comp should be removed.
* Wed Dec 11 2013 Steven Shiau <steven _at_ nchc org tw> 3.8.25-drbl1
- Part of codes in ocs-sr were moved as a function check_and_fix_vol_limit_if_required in ocs-functions.
- Bug fixed: ocs-cvtimg-comp failed to remove the linked split files.