1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
|
bilibop (0.6.3) unstable; urgency=high
* Fix missing support for aufs in autopkgtest test (lockfs).
Closes: #969606
* Move executable files from /usr/lib/bilibop to /usr/libexec/bilibop
according to FHS 3.0, Debian Policy and lintian (pedantic).
* Update translations for debconf
- nl: thanks to Frans Spiesschaert. Closes: #955504
- de: thanks to Chris Leick. Closes: #956344
- es: thanks to Camaleón. Closes: #958870
- pt: thanks to Américo Monteiro. Closes: #962411
* debian/control:
- Bump debhelper-compat version to 13.
- Bump Standards-Version to 4.5.1: no changes needed.
* debian/substvars: move to debian/description to avoid lintian warning
(source-contains-debian-substvars).
* debian/rules: update dh_gencontrol override accordingly (+fix syntax).
* debian/copyright: update GPL license URL to https.
-- Yann Amar <quidame@poivron.org> Sat, 23 Jan 2021 11:23:33 +0000
bilibop (0.6.1) unstable; urgency=low
* debian/tests
- Fix existing test: restrict to qemu backend.
- Test root filesystem locking/unlocking, with reboots between.
-- Yann Amar <quidame@poivron.org> Thu, 05 Mar 2020 20:21:54 +0000
bilibop (0.6.0) unstable; urgency=low
* Move to /usr
- source tree: move lib/ and bin/ into usr/
- debian: install files into /usr subdirectories.
- bilibop-lockfs: add support to lock /usr into initramfs and so support
/usr as a mountpoint again. Update bilibop.conf(5) manpage about /usr
whitelisting.
* Drop obsolete code and related documentation
- debian/control: drop requirements about old kernel version (2.6.37).
- bilibop-common: drop support for udev.conf's udev_root parameter.
- bilibop-lockfs: drop support for lvm.conf's locking_type parameter.
- bilibop-rules: drop support for udisks 1.
- bilibop-rules: drop support for udev 70-*-persistent.rules management.
Closes: #929891.
- bilibop-rules: drop support for GRUB device.map management.
- bilibop-rules: update extended description and debconf templates
accordingly.
* bilibop-lockfs:
- Add variable BILIBOP_LOCKFS_FALLBACK_POLICY to control how to mount
a filesystem that can't be locked as expected. Closes: #929892.
- Add variable BILIBOP_LOCKFS_UNION_METHOD to choose between aufs and
overlay (defaults to aufs if available). Fallback to the other one
if the selected module is not loadable.
- Skip early root filesystem check to not fsck read-only device.
- Update package documentation.
* debian/control:
- Add Rules-Requires-Root field (lintian hint).
- Bump Standards-Version to 4.5.0: no changes needed.
- Add a version to the dependency upon udev, to at least 242-6, due to
net.ifnames improperly set for block devices in previous versions.
Closes: #929893.
- Add a version to the dependency upon lvm2, to at least 2.02.98, i.e.
assume lvm config global_filter is supported. Update postinst script
(closes: #929890), debconf templates and lintian-overrides accordingly.
* debian:
- Remove lockfs_mount_helper manpages/symlinks (lintian hint).
- Update debconf swedish (sv) translation, thanks to Jonatan Nyberg.
Closes: #925494.
- Update debian/po/templates.pot and debian/po/*.po files.
- Add a simple test in debian/tests/control (targets bilibop-common).
-- Yann Amar <quidame@poivron.org> Sun, 09 Feb 2020 21:59:34 +0000
bilibop (0.5.6) unstable; urgency=high
* bilibop-lockfs:
- fix boot failure by supporting the new path /usr/bin/mount as well as
the legacy /bin/mount (kept for backward compatibility).
Closes: #928658.
- fix boot failure about mounts flagged 'ro' in fstab by applying the
'ro' option to the union instead of its writable branch.
Closes: #928780.
-- Yann Amar <quidame@poivron.org> Sat, 11 May 2019 01:40:04 +0000
bilibop (0.5.5) unstable; urgency=low
* debian/control:
- bump debhelper compatibility to 12 (also update debian/compat)
- add udev in Depends fields to solve lintian warnings
- bump Standards-Version to 4.3.0 (update debian/rules accordingly)
* debian/rules:
- update dh_gencontrol option and argument according to the new behaviour
of the command
- add an override for the new dh_installinitramfs, as it duplicates the
"update-initramfs -u" existing calls and triggers lintian warnings due
to absolute path in command
- enable verbose output (a should since Debian Policy 4.2.0)
-- Yann Amar <quidame@poivron.org> Wed, 30 Jan 2019 23:52:22 +0000
bilibop (0.5.4) unstable; urgency=high
* bilibop-common: remove "udev compatibility stuff" (no more needed).
Closes: #852592.
* debian/control:
- bump Standards-Version to 4.1.0, and modify Format: field in
debian/copyright accordingly (use https:// URL); also remove
extra priority (deprecated)
- add aufs-dkms in the list of packages suggested by bilibop-lockfs
* debian/*.triggers: replace 'activate' by more explicit 'activate-await'
variant (caught by lintian).
* Update copyright dates
-- Yann Amar <quidame@poivron.org> Sat, 09 Sep 2017 08:22:54 +0000
bilibop (0.5.2.1) unstable; urgency=high
* bilibop-common:
- modify underlying_device_from_aufs() to support multiple read-only
branches. Closes: #861685.
-- Yann Amar <quidame@poivron.org> Thu, 18 May 2017 15:20:24 +0000
bilibop (0.5.2) unstable; urgency=low
* bilibop-rules: add brazilian portuguese translation for debconf templates.
Thanks to Adriano Rafael Gomes <adrianorg@arg.eti.br> (closes: #827324)
* bilibop-rules: add swedish translation for the debconf templates, thanks
to Jonatan Nyberg <jonatan@autistici.org> (closes: #824911)
* bilibop-rules: fix typos in lsbilibop(8)
* debian/control: bump Standards-Version to 3.9.8 (no changes needed)
* debian/changelog: fix typo (lintian warning) in 0.5.1 entry
-- Yann Amar <quidame@poivron.org> Mon, 16 Jan 2017 23:29:07 +0000
bilibop (0.5.1) unstable; urgency=low
* bilibop-common: update bilibop_common_functions(); fix typo in bilibop(7)
manpage.
* bilibop-rules: add danish translation for the debconf templates; thanks to
Joe Dalton <joedalton2@yahoo.dk> (closes: #800456).
* bilibop-lockfs: modify lockfs_mount_helper: rename some variables to be
less confusing.
* debian/control
- Drop dependency on initscripts package. Closes: #804985, #804986
- Update Vcs-Git field and fix a typo
* debian/changelog: fix typos (lintian warnings) in 0.5.0 entry
-- Yann Amar <quidame@poivron.org> Fri, 12 Feb 2016 06:04:44 +0000
bilibop (0.5.0) unstable; urgency=medium
* bilibop-common: add support for overlayfs (in mainline kernel since 3.18).
Closes: #778497; new functions in common.sh:
- canonpath(): clean field separators in an arbitrary filepath
- is_overlay_mountpoint(): grep /proc/mounts for 'overlay' filesystem
- overlay_mountpoints(): doing the same as aufs_mountpoints()
- overlay_lowerdir(): output the cleaned value of lowerdir= mount option
- overlay_upperdir(): output the cleaned value of upperdir= mount option
- overlay_workdir()
- underlying_device_from_overlayfs(): find the underlying device from the
'lowerdir' value; fallback to live-boot (5.0~a1-1) usecases.
Also modify underlying_device_from_file() to call the previous one.
* bilibop-common: add support for btrfs. A file on a btrfs mountpoint is not
directly mapped to the underlying block device: 'stat -c %D FILE' shows
that the file seems to be on some kind of ramfs (major=0). So add two
functions in common.sh:
- is_btrfs_mountpoint()
- underlying_device_from_btrfs()
Also modify underlying_device_from_file() to call the previous one.
* bilibop-common: modify other functions in common.sh:
- underlying_device_from_aufs(): do not fail if the underlying device
contains btrfs; now use aufs_readonly_branch() instead of aufs_dirs(),
and call underlying_device_from_file() if the major number of the
underlying device is 0 (be aware of a possible endless loop)
- aufs_dirs(), aufs_readonly_branch() and aufs_writable_branch(): replace
occurencies of glob pattern 'br*' by 'br?' to skip brid[01] files
- underlying_device_from_file(), do not return 1 too early; let the last
test say if the function failed or not
- underlying_device_from_loop(): for the case the backing file itself is
on btrfs, aufs or overlay, i.e. call underlying_device_from_file() from
there too
- find_mountpoint() and device_id_of_file(): to work around overlayfs
specific design (files and dirs are not treated the same way)
- underlying_device(): remove unneeded local variable assignment
* bilibop-common: update copyright, README section and physical_hard_disk()
dependency tree in common.sh
* bilibop-common: update README.Debian, bilibop(7) and bilibop.conf(5).
* bilibop-lockfs: add support for overlayfs.
- Modify local-bottom/bilibop-lockfs initramfs script: define $METHOD as
the aufs or overlay module that is supported by the kernel, and use
its value to setup specific mount options and mount points. Allow one to
override the default directory name by setting BILIBOP_LOCKFS_PATH_PREFIX
- Modify initramfs hook (+ manual_add_module overlay)
Improve the part of the script related to mount commands (mount -t tmpfs,
mount -o bind, mount -o move, ...). Make sure the paths of the branches
used to build the union fs will be consistent at runtime (for both
overlay, and aufs with brs=0), as the only one places to get those paths
(e.g. mount options field in /proc/mounts) is out of sync.
- Rewrite lockfs_mount_helper script, according to the initramfs script;
prepare directory trees and add/modify comments. Change mount order; now
the tmpfs mountpoint is set BEFORE the readonly branch, the last one
being, by design (bilibop), a subdirectory of the first one. Introduce
a new tunable variable BILIBOP_LOCKFS_PATH_SCHEME to choose the
directory structure of the lower and upper branches.
- Also modify lockfs-notify accordingly to support overlay filesystem
* bilibop-lockfs: modify blacklist_bilibop_devices() in lockfs.sh. Manually
add lvm-pv-uuid-* symlink to the list, as the udev rules creating it are
not included into the initramdisk.
* bilibop-lockfs: update README.Debian and lockfs_mount_helper(8)
* bilibop-rules: modify initramfs script. The busybox's readlink
implementation does not work as expected (with -f flag) and does not
resolve the target of a broken symlink; so replace the readlink call by a
'ls -l | sed' command.
* bilibop-rules: modify lsbilibop. Remove '\n' in echo, as it is not
supported by all shells, and call echo again to print an empty line
(closes: #772187).
* bilibop-rules: update lsbilibop(8)
* bilibop-udev: update README.Debian
* debian/control: bump Standards-Version to 3.9.6 (no changes needed).
Update extended descriptions.
* debian: modify bilibop-{lockfs,rules}.post{inst,rm}: use 'which' to test
availability of update-initramfs command instead of testing its full path,
to avoid a lintian warning.
-- Yann Amar <quidame@poivron.org> Tue, 14 Jul 2015 17:11:52 +0000
bilibop (0.4.23) unstable; urgency=high
* bilibop-lockfs: modify lockfs_mount_helper script: take mount(8) flags
into account when parsing script arguments provided by parent process;
this avoids mount failures at boot time or later, when the command is
invoked with a such flag (closes: #769150).
* bilibop-rules: add dutch translation for the debconf templates; thanks to
Frans Spiesschaert <Frans.Spiesschaert@yucom.be> (closes: #766647).
-- Yann Amar <quidame@poivron.org> Sat, 15 Nov 2014 14:05:44 +0000
bilibop (0.4.22) unstable; urgency=medium
* bilibop-common:
- Fix a bug in device_node_from_major_minor(): don't rely on /dev/block/*
symlinks, because some of them may not exist at boot time on systems not
using initramfs (regression in 0.4.20).
- Update copyright date and owner of the shell library
- Update TODO list
* bilibop-lockfs: Fix boot failures
- Modify set_readonly_lvm_settings(): do not set 'metadata_read_only' to
'1' in lvm.conf at early boot time (in the initramfs environment), since
it prohibits execution of commands such as vgchange or lvchange, and
then forbids activation of Logical Volumes, making the system unbootable
(with lvm2 > 2.02.98).
- Modify the initramfs local-bottom script: undo possible readonly
settings (due to the blind init-top script) before exiting, when
BILIBOP_LOCKFS is 'false' or undefined: it uses a backup of lvm.conf and
the new 'undo_readonly_dm_settings()' function.
- Fix a delimiter conflict of the sed command in unlock_logical_volume()
* bilibop-rules:
- Add russian translation for the debconf templates; thanks to Yuri Kozlov
<yuray@komyakino.ru> (Closes: #756086).
- In pvfilter.sh, modify _pvfilter_list_filter_devices() to skip
lvm-pv-uuid-* symlinks: they are not available before lvm2 initramfs
script is executed, and a filter based on them may lead the system to
be unbootable.
- In pvfilter.sh, do not initialize 'global_filter' with an empty array,
which is not supported: modify _pvfilter_init_lvm_configfile() and
_pvfilter_init_device_filters(). Also fix return value in the last one.
- Modify make_unpersistent_rules and the initramfs script to create
/run/udev/rules.d if it does not exist (since it is no more supported by
last versions of udev)
- Improve idempotency of make_unpersistent_rules script: do not create
files or symlinks in /etc if they do not exist, unless the new '-f' or
'--force' option is used. Also, modify intramfs script to create the
'persistent' udev rules files in /run only if there are symlinks
pointing to them in /etc.
- Modify all helper scripts: do not set +e before parsing options, and
then call getopt in a 'if..then' block instead.
- Fix a typo in grub_device_map_manager
* debian/copyright: update copyright date
* debian/control:
- Remove deprecated 'udisks' package from the dependencies of
bilibop-rules; closes: #750507. Also move 'udisks2' from Recommends to
Suggests.
- Move down bilibop-rules priority to extra, and remove Conflicts field in
bilibop-udev.
- Drop dependencies on aufs-tools, pmount and grub-* packages
- Update bilibop-rules and bilibop-udev extended descriptions
* debian/bilibop-rules.config:
- Test if it exists before running an in-package helper script.
- Skip questions whose answer cannot be treated by the postinst script: if
udev is not running (or invoke-rc.d fails), exit before questions about
bilibop_rules_generator and physical_volumes_filter are asked.
* debian/*
- Remove unneeded bilibop-*.dirs files
- Update maintainer scripts (mainly bilibop-rules.post*)
-- Yann Amar <quidame@poivron.org> Wed, 10 Sep 2014 21:32:05 +0000
bilibop (0.4.21) unstable; urgency=low
* bilibop-common: in find_mountpoint(), replace the two piped sed commands
by only one.
* bilibop-rules: add translations for the debconf templates:
+ spanish: thanks to Camaleón <noelamac@gmail.com>. Closes: #733867.
+ german: thanks to Chris Leick <c.leick@volbio.de>. Closes: #738781.
* Modify debian/bilibop-rules.post*: in sed commands, replace the
undocumented -E option by the standard -r option.
* Remove debian/source.lintian-overrides (newer-standards-version 3.9.5):
after new lintian release (2.5.20), this file is no more needed. This
reverts commit e32bff8f93a9175900a5c80516e18788abc8704e (2013-11-24).
-- Yann Amar <quidame@poivron.org> Wed, 12 Feb 2014 22:29:05 +0000
bilibop (0.4.20) unstable; urgency=low
* bilibop-common:
* Modify common.sh: replace '/sbin/udevadm' by just 'udevadm', and declare a
udevadm() function if the command itself is not in the PATH. This should
work with all versions of udev.
* Modify device_node_from_major_minor(): rely on the contents of /dev/block
(as these symlinks are not created by udev).
* Modify drivemap.sh: add a missing debug command at the beginning of a
function.
* Modify lib/bilibop/disk: set -e
* Fix a typo in drivemap.sh and the drivemap command: rename function
_drivemap_max_mp_lenght() -> _drivemap_max_mp_length(), and also fix the
same spelling error for the variable lenght -> length.
* Update bilibop(7) and bilibop.conf(5) manpages (and also the french
translations).
* Update documentation (README.Debian, examples/bilibop.conf, misc/*.txt).
* bilibop-rules:
* Add translations for the debconf templates:
+ Italian: thanks to Beatrice Torracca <beatricet@libero.it>
Closes: #727755.
+ Portuguese: thanks to Américo Monteiro <a_monteiro@gmx.com>
Closes: #730000.
* Modify the config maintscript and the initramfs script: as the --run
option no more works for 'udevadm info', use the hardcoded /run/udev
instead.
* Modify the udev rules file: rely on the 'removable' attribute to know that
a device is a disk (as for the 'partition' attribute to know that a device
is a partition); also do not set unconditionally Udisks ENV variables for
the disk; reorder some rules, rename LABELs, + other cosmetics.
* Update bilibop_rules_generator helper script for consistency.
* Fix management of errors in physical_volumes_filter and pvfilter.sh
* Remove a reference to a non-existent manpage in pvfilter.sh
* Fix a spelling error in the help page of physical_volumes_filter.
* Modify _pvfilter_find_dev_links(): use a best 'find' commandline, and
simplify its output filter (grep).
* Modify postinst to regenerate the cache file if the filter value has been
modified in lvm.conf
* Add support for the LVM 'global_filter' variable (lvm2 >= 2.02.98):
+ Add '_pvfilter_has_global()' function in pvfilter.sh: just tests if the
'global_filter' variable is supported by the version of lvm2 actually
installed on the system.
+ Modify _pvfilter_init_lvm_configfile().
+ Modify _pvfilter_init_device_filters().
+ Add --global and --noglobal options to the helper script.
+ Rename debconf template: 'bilibop-rules/physical_volumes_filter/warning'
-> 'bilibop-rules/physical_volumes_filter/without_global_filter/warning'
+ Add 'bilibop-rules/physical_volumes_filter/with_global_filter/warning'
debconf template.
+ Update maintscripts.
* Add support for Udisks 2.x (udisks2 package):
+ Modify the udev rules file to set udisks2 variables as well as udisks
variables.
+ Update bilibop_rules_generator helper script for consistency.
+ Modify lsbilibop script: grep also udisks2 variables.
* Replace all occurences of 'eval ${foo}' by [ "${foo}" = "true" ] (as eval
${foo} is true if ${foo} is empty).
* Replace all occurences of '\s' by the POSIX class '[[:blank:]]' in grep
commands (see bug #729581/#730146).
* Update lsbilibop(8) manpage (and also the french translation).
* Update documentation (README.Debian, examples/bilibop.conf).
* bilibop-lockfs:
* Add 'random' as a possible value for BILIBOP_LOCKFS_SWAP_POLICY: this
allows one to specify to use a swap device only if it is encrypted with a
random key.
+ Add new function is_randomly_encrypted() in lockfs.sh
+ Modify get_swap_policy() and apply_swap_policy() in lockfs.sh
* Add a new boot option 'lockfs=default', used to reset bilibop-lockfs
variables to their default values, i.e. empty strings (but BILIBOP_LOCKFS
itself, which is then set to 'true'); modify lockfs_mount_helper and the
initramfs scripts accordingly.
* Modify lockfs_mount_helper and local-bottom initramfs script to also
accept boot options of the form 'lockfs=-/foobar', where /foobar is a
mountpoint to whitelist.
* Remove unneeded code about 'crypto_LUKS' filesystem types in the mount
helper script: the mount.crypt command (libpam-mount) already manages
permissions of children virtual devices (loop and dm) when the 'ro' option
is encountered in the fstab entry.
* Add new function get_device_node() in lockfs.sh: if LABEL=* is used in
fstab, translate '/' characters to their hex value to be sure to find the
symlink in /dev/disk/by-label/; modify unlock_logical_volume() and
is_encrypted() to call it.
* Add support for LVM 'global_filter' variable in lockfs.sh: modify
initialize_lvm_conf() and blacklist_bilibop_devices(); so 'global_filter'
is unconditionally set to the same value than 'filter'.
* Modify local-bottom initramfs script: when calling 'is_removable()', don't
call 'physical_hard_disk()' again, as BILIBOP_DISK has already been
computed.
* Replace all occurences of '\s' by the POSIX class '[[:blank:]]' in grep
commands.
* Update documentation (README.Debian, TODO, examples/bilibop.conf).
* bilibop-udev:
* Modify the udev rules file: rely on the 'removable' attribute to know that
a device is a disk.
* Replace all occurences of '\s' by the POSIX class '[[:blank:]]' in grep
commands.
* debian/control:
* Update bilibop-lockfs and bilibop-rules extended descriptions.
* Move aufs-tools from Recommends: to Suggests: for bilibop-lockfs.
* Add udisks2 as an alternative to udisks in Recommends: for bilibop-rules.
* Bump Standards-Version: to 3.9.5; no changes.
* Update debian/po/templates.pot and debian/po/*.po
* Add debian/source.lintian-overrides (newer-standards-version 3.9.5), as
lintian (2.5.19) is not yet updated (see #729096).
* Add debian/bilibop-rules.lintian-overrides (unused-debconf-template): the
postinst script embeds the ${HELPER} variable in template names.
-- Yann Amar <quidame@poivron.org> Mon, 09 Dec 2013 02:58:24 +0000
bilibop (0.4.19) unstable; urgency=high
* bilibop-lockfs:
- Modify parse_and_modify_fstab() in lockfs.sh: skip 'rbind' mounts as
well as 'bind' mounts.
- Modify lockfs_mount_helper script: set -e.
- Simplify lockfs_mount_helper; especially, rewrite the mount_fallback()
function to parse the arguments provided by the parent process (mount)
'as is', and do not 'exec mount', but just 'mount' instead, to be able
to exit with a code != 0 when mount_fallback() is called.
- Modify lockfs_mount_helper and the local-bottom initramfs script to
parse options (BILIBOP_LOCKFS_SIZE and boot commandline) and set the
size of the tmpfs in a better and more reliable way (use regex instead
of glob patterns).
- Add new function 'is_write_protected()' in lockfs.sh (takes into account
sd, mmcblk and mspblk devices) and call it from the local-bottom
initramfs script.
- Modify init-top initramfs script: in the case any drive is physically
locked, override BILIBOP_LOCKFS and BILIBOP_LOCKFS_POLICY.
* bilibop-rules:
Fix a bug in lsbilibop: since udev is now a part of systemd, 'udevadm info
--root' no more works to query the udev_root value; so query it directly
from udev.conf instead. (Closes: #727682)
-- Yann Amar <quidame@poivron.org> Fri, 25 Oct 2013 13:46:29 +0000
bilibop (0.4.18) unstable; urgency=low
* Add japanese translation for the debconf templates; thanks to
<victory.deb@gmail.com> (closes: #726975).
* debian/copyright: fix my name also here.
-- Yann Amar <quidame@poivron.org> Wed, 23 Oct 2013 18:11:08 +0000
bilibop (0.4.17) unstable; urgency=low
* bilibop-lockfs: modify local-bottom initramfs script and
lockfs_mount_helper to override configuration variables and even boot
parameters when the drive is physically locked (write protected by a
switch).
* bilibop-rules: fix typos in debconf templates; update po files.
* debian/control: fix my name, and remove "Uploaders:" field.
-- Yann Amar <quidame@poivron.org> Fri, 11 Oct 2013 00:30:15 +0000
bilibop (0.4.16) unstable; urgency=low
* bilibop-rules: move db_reset and db_fset commands from config to postinst
script; this should improve the behavior of the scripts during package
upgrade if a custom rules file has been built manually. Add comments.
* debian/substvars: remove trailing ${Newline} in the "Description"
variable. It had been added to work around bug #659814 (dpkg-dev),
which has been recently fixed.
-- bilibop project <quidame@poivron.org> Tue, 17 Sep 2013 11:46:55 +0000
bilibop (0.4.15) unstable; urgency=low
* bilibop-rules: modify bilibop-rules.bilibop.udev to avoid direct access
(with blkid -p) to suspended dm devices; then create the symlink (as
mapper/dm_name) earlier; update bilibop_rules_generator for consistency.
-- bilibop project <quidame@poivron.org> Fri, 09 Aug 2013 20:19:40 +0200
bilibop (0.4.14) unstable; urgency=low
* bilibop-common: fix spelling errors in manpages.
* bilibop-rules:
- Modify postrm script: fix an error about udev tags directory path.
- Include missing 'rlvm' sample script in the package.
- Modify 'rlvm' sample (rely on $SHELL environment variable).
-- bilibop project <quidame@poivron.org> Sat, 20 Jul 2013 00:28:48 +0200
bilibop (0.4.13) unstable; urgency=low
* bilibop-common: update bilibop.conf(5) manual pages.
* bilibop-rules:
- Modify maintainer scripts: fix syntax errors; keep variable names
consistency between scripts; backup GRUB device.map in postinst, and
restore it in postrm (purge); do not create a fake device.map in prerm,
just a broken symlink.
- Add a sample script (in the doc) to ease the use of the
physical_volumes_filter helper script.
- Update README.Debian
- Remove the TODO
-- bilibop project <quidame@poivron.org> Thu, 04 Jul 2013 15:17:21 +0200
bilibop (0.4.12) experimental; urgency=low
* bilibop-common:
- Modify 'underlying_device_from_aufs()'; take into account that an aufs
branch is not necessarly the mountpoint of a device.
- Update the copyright date of the shell library (common.sh).
- Update main function's dependency tree in common.sh
- Fix a typo in the french bilibop.conf manpage.
- Update README.Debian
* bilibop-lockfs:
- In the local-bottom initramfs script, follow
BILIBOP_LOCKFS_NOTIFY_POLICY to display non-error messages in plymouth.
- debian/control: add plymouth in the 'Suggests:' field.
* bilibop-rules:
- Modify bilibop_rules_generator to ease the build of rules that can be
applied to dual port devices (especially USB and MMC/MSP/SD).
- Modify sysfs_attrs_rule() in bilibop_rules_generator: replace occurences
of double quotes (") by a question mark (?) in values of attributes (as
" means inch) instead of removing these attributes.
- Modify make_unpersistent_rules and the initramfs script to fix a design
error in the 'unpersistent rules' feature. This mainly affected the cd
rules (symlinks to /dev/sr* were not always created or updated).
- Make the package debconf-configurable: rewrite existing maintscripts;
add bilibop-rules.config and bilibop-rules.templates; add debian/po/
and populate it; modify debian/control and debian/rules.
- Add french translation for debconf.
- Update README.Debian
* bilibop-udev:
- Modify postinst script: if the disk hosting the system (or one of its
partitions) still belong to 'floppy' group, then exit with error, unless
a custom rules file exists.
- modify postrm script: be sure /sys/block exists before doing things; use
ERE instead of BRE in grep commands.
- Update README.Debian
* debian/control: update Homepage: and Vcs-Git: fields.
* debian/copyright: remove the 'Source: ' field and update copyright dates.
* debian/substvars: replace the strict requirement by something more soft,
as an advice.
-- bilibop project <quidame@poivron.org> Wed, 03 Jul 2013 20:58:40 +0200
bilibop (0.4.11) experimental; urgency=low
* bilibop-common: modify /lib/bilibop/test to output the value of
BILIBOP_COMMON_BASENAME, unless the -q option is used.
* bilibop-udev:
- Modify the udev rules file to create a symlink with the output of
/lib/bilibop/test.
- Rewrite postinst script to not fail when the package is installed in a
chrooted or debootstraped environment, and explicitly load the udev
rules before triggering uevents.
* bilibop-rules: fix an error (typo) about -x option in the
physical_volumes_filter script.
-- bilibop project <quidame@poivron.org> Mon, 13 May 2013 01:21:57 +0200
bilibop (0.4.10) experimental; urgency=low
* debian/compat: bump to compatibility level 9.
* debian/control: down libnotify-bin from Recommends: to Suggests: for the
bilibop-lockfs binary package.
* bilibop-common: modify is_aufs_mountpoint() and physical_hard_disk(): set
some local variables to an empty string to fix shell-dependant behaviours
with the 'local' built-in command.
* bilibop-rules:
- Modify helper scripts in /usr/share/bilibop: set -e; reformat syntax
(spaces, neawlines, indents); fix minor errors and cosmetics.
- make_unpersistent_rules: replace the --skip option by the more explicit
--only; remove the confusing --reverse option; allow to always handle
the two files in the same command line.
- bilibop_rules_generator: fix printf errors and output redirection, and
manage minor failures to not abort immediately.
- grub_device_map_manager: add link_device_map() function; do not
automatically and stupidly remove the existing devive map when the
--link option is used; fix typos.
- lsbilibop: add -l option to not rely on BILIBOP udev tags; query the
ID_DRIVE_DETACHABE value.
- Update documentation.
* bilibop-udev: add a new udev rule (to create a 'bootdisk' symlink).
-- bilibop project <quidame@poivron.org> Sat, 04 May 2013 01:57:21 +0200
bilibop (0.4.9) experimental; urgency=low
* bilibop-rules: modify debian/bilibop-rules.bilibop-udev and
bilibop_rules_generator to unconditionally set UDISKS_SYSTEM_INTERNAL to 1
for the main drive.
* bilibop-lockfs: add 'activate_bilibop_lv()' in lockfs.sh functions, and
call it from bilibop-lockfs local-bottom initramfs script. This is needed
to be sure all Logical Volumes needed by the system (listed in /etc/fstab
and/or /etc/crypttab) are active at this step.
* Fix typos: replace all occurences of \' by \(aq in manual pages.
-- bilibop project <quidame@poivron.org> Sun, 31 Mar 2013 18:47:41 +0200
bilibop (0.4.8) experimental; urgency=low
* bilibop-udev: rewrite postinst script.
-- bilibop project <quidame@poivron.org> Mon, 25 Mar 2013 06:41:23 +0100
bilibop (0.4.7) experimental; urgency=low
* bilibop-udev: fix a bux in the udev rules (a matching rule as
KERNEL=="$result*" is not supported by udev).
* bilibop-common: add /lib/bilibop/test (to be used by new bilibop-udev udev
rule); as the 'proof of concept' /lib/bilibop/disk is no more needed by
bilibop-udev, modify it to output the full path of the disk.
* debian/control: move versioned dependency on initscripts from bilibop-common
to bilibop-lockfs and bilibop-rules.
* Remove debian/source.lintian-overrides (current version of the Debian policy
is now 3.9.4).
-- bilibop project <quidame@poivron.org> Mon, 25 Mar 2013 04:59:17 +0100
bilibop (0.4.6) experimental; urgency=low
* bilibop-lockfs:
- Add support for plymouth: send a message from local-bottom initramfs
script when bilibop-lockfs is enabled, disabled or has failed.
- Allow to override/blank BILIBOP_LOCKFS_WHITELIST with 'lockfs=all'
boot parameter.
- Update documentation.
* bilibop-rules:
- Add a new helper script: physical_volumes_filter, and its shell
functions: pvfilter.sh; the script is used to modify the variables
'obtain_device_list_from_udev' and 'filter' in lvm.conf.
- Rewrite udev rules and bilibop_rules_generator to tag internal drives
and partitions, and restore some dm-* related symlinks in the udev
database (needed by the new script).
- Update documentation.
* debian/control: update bilibop-rules extended description.
* Rewrite maintainer scripts.
-- bilibop project <quidame@poivron.org> Thu, 20 Dec 2012 12:45:39 +0100
bilibop (0.4.5) experimental; urgency=low
* bilibop-lockfs: modify bilibop-lockfs initramfs scripts, lockfs.sh and
lockfs_mount_helper:
- 'noswap' boot parameter overrides BILIBOP_LOCKFS_SWAP_POLICY and set
it to "hard".
- parse /proc/cmdline in a more portable and robust way: take into account
that the last runlevel (0 to 6, S and single) overrides all the previous
ones; allow the general format 'lockfs[=opt1[,opt2[,opt3]]]' with
options 'hard', 'soft', 'force' and an arbitrary string matching a regex
for the size of the tmpfs used for /.
* Update bilibop-lockfs documentation (README.Debian).
* Update bilibop.conf(5) manual page for bilibop-lockfs related variables
that can be overridden from boot commandline.
-- bilibop project <quidame@poivron.org> Wed, 28 Nov 2012 03:37:16 +0100
bilibop (0.4.4) experimental; urgency=low
* Fix inconsistent variable name in the lockfs_mount_helper script.
* Modify lockfs_mount_helper script: allow devices with 'crypto'
ID_FS_USAGE (instead of only 'filesystem') to be listed in the
BILIBOP_LOCKFS_WHITELIST variable.
* Update bilibop.conf(5) manual pages (en & fr), and fix a translation
error in the french version.
-- bilibop project <quidame@poivron.org> Tue, 27 Nov 2012 01:40:01 +0100
bilibop (0.4.3) experimental; urgency=low
* bilibop-common:
- Add lib/bilibop/disk (outputs the name of the disk hosting the root
filesystem, or hosting a file, device or directory given as argument);
- Update documentation (README.Debian and bugs.txt).
* bilibop-lockfs:
- Fix error due to invalid lvm.conf settings (read_only_volume_list should
not be set if empty): modify 'bilibop-lockfs' initramfs scripts, and
the functions 'parse_and_modify_fstab()', 'initialize_lvm_conf()',
'blacklist_bilibop_devices()', 'set_readonly_lvm_settings()' and
'unlock_logical_volume()'.
- Improve support for loop devices (take into account that the first field
in fstab can be a regular file instead of a block device): modify
lockfs_mount_helper script and 'parse_and_modify_fstab()' function in
lockfs.sh.
* bilibop-udev: modify udev rules file (now based on lib/bilibop/disk; runs
faster). Add postinst and postrm maintscripts to trigger spurious uevents.
Update README.Debian.
* debian/control: change Section of bilibop binary package (from misc to
metapackages); change Depends of the same package (replace dependency on
bilibop-device-policy virtual package by a versioned dependency on
bilibop-rules).
-- bilibop project <quidame@poivron.org> Tue, 20 Nov 2012 15:22:57 +0100
bilibop (0.4.2) experimental; urgency=low
* Update debian/bilibop-lockfs.dirs
* Update debian/bilibop-lockfs.install
* Add missing call to 'get_udev_root' in the bilibop_disk (bilibop-udev)
script.
-- bilibop project <quidame@poivron.org> Fri, 16 Nov 2012 03:14:23 +0100
bilibop (0.4.1) experimental; urgency=low
* Modify lockfs.sh:
- add new functions: 'set_readonly_lvm_settings()', to modify
'locking_type', 'metadata_read_only' and 'read_only_volume_list'; and
'unlock_logical_volume()', to not lock (set read-only) whitelisted
Logical Volumes.
- rewrite 'initialize_lvm_conf()' to also initialize 'locking_type',
'metadata_read_only' and 'read_only_volume_list' LVM variables.
- rewrite 'blacklist_bilibop_devices()'.
- modify 'parse_and_modify_fstab()' to use 'unlock_logical_volumes()'.
* bilibop-lockfs:
- modify local-bottom initramfs script (call 'set_readonly_lvm_settings()'
when lockfs policy is 'hard').
- modify initramfs hook to include a list of Logical Volumes in the
initramdisk; this list is used by 'set_readonly_lvm_settings()'.
- new init-top initramfs script, to call 'set_readonly_lvm_settings()'
very early in the boot process, unless the 'nolockfs' parameter is used
in the boot commandline.
* Update documentation (debian/bilibop-lockfs.README.Debian).
* Modify lockfs-notify script: replace 'permanent' by 'persistent' and
'temporary' by 'volatile'.
* Modify bilibop.conf(5) manual pages: use the '.SS' tag, and replace \' by
\(aq.
* debian/control: update bilibop-lockfs description; since bilibop depends
on bilibop-device-policy, remove 'all' from 'install all other BILIBOP
packages'. For bilibop-udev, replace versioned suggestion on
bilibop-lockfs by unversioned one.
-- bilibop project <quidame@poivron.org> Fri, 16 Nov 2012 00:46:57 +0100
bilibop (0.4.0) experimental; urgency=low
* Add new binary package: bilibop-udev, as a minimal subset of
bilibop-rules. There is a conflict between bilibop-udev and bilibop-rules,
and each of them provides the 'bilibop-device-policy' virtual package.
* bilibop-lockfs: the mount_fallback() function being the only one in
lockfs.sh that can be used by the lockfs_mount_helper script, move it from
lockfs.sh to lockfs_mount_helper, and source common.sh directly instead of
lockfs.sh from lockfs_mount_helper.
* bilibop-common: update documentation:
- add a reference to bilibop-udev in misc/udev.txt
- update misc/bugs.txt (new bug reported against udisks)
- give additional information about encrypted swap devices (misc/swap.txt)
- add a NOTE about hibernation, and explain how to hide the 'hibernate'
button of xfce4-session-logout (misc/swap.txt)
- give more info about the LVM 'filter' settings and how to use it from OS
on external media (misc/lvm2.txt)
- give detailed info on how to build and use non-default keymap in GRUB
(misc/grub2.txt)
* debian/changelog: fix a debchangelog syntax error in the Initial Release
entry (add the missing colon after 'Closes').
* debian/control: update dependency relationships and description of the
binary packages:
- bilibop: modify the Depends: field; now bilibop depends on the virtual
package 'bilibop-device-policy' instead of 'bilibop-rules (= version)'.
- bilibop-common: modify the Suggests: field; now suggests the virtual
package 'bilibop-device-policy' as above and remove (= version) for
bilibop-lockfs.
- bilibop-lockfs: modify the Recommends: and Suggests: fields in the same
manner. Move 'aufs-tools' and 'libnotify-bin' from Suggests: to
Recommends: field. Add some details in the long description.
- bilibop-rules: add 'grub-common' and 'lvm2' in Recommends: and move
'udisks' from Suggests: to Recommends: field. Update short description.
Add some details in the long description.
* Update debian/bilibop-rules.dirs (remove unneeded initramfs-tools/hooks
directory).
-- bilibop project <quidame@poivron.org> Mon, 22 Oct 2012 00:20:33 +0200
bilibop (0.3.6) experimental; urgency=low
* bilibop-common: modify common.sh for portability:
- device_node_from_major_minor(): replace local path= by dev= (path is
an environment variable of zsh, as PATH, but with spaces as separators
instead of colons).
- underlying_device_from_aufs(): escape equal sign (\=) in a variable
subtitution (for compatibility with zsh again).
* bilibop-common: modify common.sh to be sure DEBUG is 'true' or 'false'.
* bilibop-common: modify physical_hard_disk(). Base the loop on /sys/block/*
instead of the content of /proc/partitions. Runs a little bit faster.
* bilibop-common: Add support for aufs module parameter 'brs=0'; add
aufs_dirs_if_brs0() function, and modify aufs_readonly_branch(),
aufs_writable_branch() and aufs_dirs() to use the new one.
* bilibop-common: modify _drivemap_volume_size() to use 10 instead of 8 as a
limit to display sizes in MB).
* bilibop-common: add FSF address in the licence header of common.sh
* bilibop-lockfs: use device_nodes() in blacklist_bilibop_devices().
* bilibop-rules: fix typo in lsbilibop(8) french manual page.
* Update documentation for bilibop-common (README.Debian, bugs.txt and
lvm2.txt), bilibop-lockfs (README.Debian) and bilibop-rules
(README.Debian).
* debian/control: replace debhelper (>= 9.0.0) by debhelper (>= 9) in the
Build-Depends: field. Add "GNU/Linux" in the short description of the
bilibop metapackage.
* debian/substvars: replace 'Debian' by 'Debian GNU/Linux'; add 'eSATA' in
the list of external media.
-- bilibop project <quidame@poivron.org> Tue, 16 Oct 2012 15:58:14 +0200
bilibop (0.3.5) experimental; urgency=low
* Fix typos in manpages and add french translations of the manpages.
* bilibop-rules:
Remove loopback udev rules file and modify bilibop rules file and
bilibop_rules_generator to not depend on the BACKING_FILE variable.
* bilibop-rules:
Rewrite lsbilibop to allow to trigger uevents in a per-action and
per-device basis: split -u option (update) to -a (action=add) and -c
(action=change) options.
Add a short help message in the case BILIBOP udev tag does not exist.
Add the DEVLINKS udev property in the info (-i option) output.
Relative paths, symlinks and wildcards are now supported in the
commandline.
* bilibop-rules:
Modify lsbilibop manpage to be consistent with the new lsbilibop script.
* bilibop-lockfs:
Be less restrictive in blacklist_bilibop_devices() when building the
'reject' patterns for lvm.conf filter array: only apply on bilibop
Physical Volumes and their symlinks instead of all bilibop block
devices and parent directories of their symlinks.
Modify and rename overwrite_lvm_conf() to initialize_lvm_conf().
Add BILIBOP_PART variable in the initramfs script.
* bilibop-common:
Fix drivemap output errors: remove annoying trailing spaces, fix width
issues that occured with the -p option.
Define the PROG variable and replace all occurencies of ${0##*/} by ${PROG}
Fix a missing redirection to stderr when --debug is invoked.
* bilibop-common:
add device_nodes() function, which is used now in physical_hard_disk() and
in lsbilibop script. Fix indentations (expand tabs) in common.sh.
* bilibop-common:
Add Copyright and Licence as header of lib/bilibop/common.sh, which can be
used standalone.
* debian/control: fix typo in bilibop-common description.
* Remove unneeded executable bit of maintainer scripts and file intended to
be installed in /bin and /usr/bin.
* Add debian/source.lintian-overrides to override lintian warning message
W: bilibop source: newer-standards-version 3.9.4 (current is 3.9.3)
-- bilibop project <quidame@poivron.org> Tue, 09 Oct 2012 00:06:50 +0200
bilibop (0.3.4) experimental; urgency=low
* debian/control: bump Standards-Version to 3.9.4; add dependency on
initscripts (>= 2.88dfs-13.3) for bilibop-common. Replace versioned
dependencies on udev and initramfs-tools by unversioned dependencies;
remove versioned dependency on base-files. Replace Vcs-Browser: field
by Vcs-Git: field.
* lib/bilibop/common.sh: add a test in physical_hard_disk() to avoid
possible failures with some partition schemes. Allow
parent_device_from_dm() to accept a device basename or its absolute path
as argument.
* lib/bilibop/lockfs.sh: allow is_encrypted() to treat devices called by
their UUID or LABEL as well as their filename.
-- bilibop project <quidame@poivron.org> Sun, 23 Sep 2012 22:58:27 +0200
bilibop (0.3.3) unstable; urgency=low
* debian/control: add Vcs-Browser: field.
-- bilibop project <quidame@poivron.org> Tue, 03 Jul 2012 02:59:38 +0200
bilibop (0.3.2) unstable; urgency=low
* debian/control: fix indentation errors in bilibop-lockfs description.
* bilibop-rules:
- postinst: fix an error in the 'udev trigger --sysname-match' argument.
- postrm: trigger uevents for block devices owned by the 'disk' group.
- prerm: remove custom 66-bilibop.rules when package is purged.
-- bilibop project <quidame@poivron.org> Thu, 21 Jun 2012 00:16:26 +0200
bilibop (0.3.1) unstable; urgency=low
* debian/control: in the Suggests: field of bilibop-rules, replace the too
specific 'grub2' by a list of alternatives (grub-coreboot, grub-efi-amd64,
grub-efi-ia32, grub-ieee1275 and grub-pc).
* Add a TODO in bilibop-common, bilibop-rules and bilibop-lockfs.
* Include /etc/bilibop/bilibop.conf in the bilibop-common binary package.
* Modify scripts and documentation to take into account that there can be
more than height loopback devices.
* bilibop-rules:
- Fix errors on tests in the initramfs script.
- Modify grub_device_map_manager to exit with code 0.
* bilibop-rules.postinst: trigger uevents for block devices.
* bilibop-rules.bilibop.udev and bilibop_rules_generator: import ID_FS_*
properties of dm devices in udev database even if udisks is not installed.
* bilibop_rules_generator: include a new rule for the case the generated
custom rules file is orphaned.
-- bilibop project <quidame@poivron.org> Wed, 20 Jun 2012 01:47:55 +0200
bilibop (0.3.0) unstable; urgency=low
* debian/control:
- Update Build-depends from debhelper (>= 8.0.0) to debhelper (>= 9.0.0).
- Change some dependencies of binary packages to versioned dependencies:
udev (>= 167), initramfs-tools (>= 0.99). As for base-files (>= 6.4),
this is needed by the use of the /run temporary directory in bilibop
functions or scripts.
* bilibop-lockfs: modify the initramfs hook: busybox providing its own
blockdev builtin, don't add /sbin/blockdev in the initramfs if busybox is
added.
* extended_partition(): rewrite to avoid direct access on devices (now
based on udev instead of blkid), move it from lockfs.sh to common.sh
* lockdev_rootdev_tree():
- Rewrite it to avoid direct access on devices.
- Rename it blockdev_root_subtree().
* lockfs_mount_helper:
- When the fstype registered in /etc/fstab is 'crypt', 'crypt_LUKS' or
'crypto_LUKS', set the mounted mapped device as readonly too (and not
only the underlying device) if asked by BILIBOP_LOCKFS_POLICY != soft.
- Use LC_ALL=C before the verbose chmod and chown to not depend on the
locale and simplify the regexp in sed.
* Put the loop used in the initramfs script to parse and modify fstab in the
parse_and_modify_fstab() function in lockfs.sh, and call this function in
the initramfs script.
* Because LVM tools can bypass 'readonly' settings of block devices and
reset them as writable, add new functions in lockfs.sh:
- blacklist_bilibop_devices(): called from the initramfs script.
- overwrite_lvm_conf(): called from the previous one.
They are used to disallow management of bilibop (physical and virtual)
devices by the lvm commands by filtering them in the temporary lvm.conf.
This avoids breakage of bilibop-lockfs 'hard' policy, at least for the
root filesystem and its parent devices.
* Add a new part (3.1.g) in README.Debian to explain what is done, and why.
* bilibop-common: add a reference to
http://wiki.debian.org/AdvancedStartupShutdownWithMultilayeredBlockDevices
in the documentation.
* Add misc/bugs.txt and misc/lvm2.txt in the documentation.
* common.sh: remove unneeded command substitution (echo) in the
undelying_device_from_loop() function.
* New available options in usr/bin/drivemap:
- Split --debug to --debug and -x or --set-x
- Add -p or --mountpoint to explicitly ask to display mountpoints.
- Add -w or --width to control the width of the output.
* drivemap.sh: modify _dotline() and _print_line() to include new options.
* drivemap.1: add the new options in the manpage.
* _drivemap_primary_partitions(): rewrite to use extended_partition().
* Fix some typos, unclear sentences and language errors in debian/control,
in the documentation and in the comments of scripts and functions.
-- bilibop project <quidame@poivron.org> Sat, 16 Jun 2012 01:53:41 +0200
bilibop (0.2) unstable; urgency=low
* New OpenPGP key.
* debian/control: change 'Achitecture: all' to 'Architecture: linux-any' for
all binaries.
* debian/control: more precise description of the packages, their purposes
and features. Add a statement about the required kernel version.
* debian/copyright: modify Format field to:
http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ (Fixes
lintian pedantic message).
* debian/copyright: change copyright date from 2012 to 2011-2012 for all
files except debian/*.
* Clean debian/rules.
* Add debian/substvars.
* bilibop-common: modify functions relative to loop devices and aufs to
improve compatibility with LiveUSB systems.
* bilibop-lockfs: set the primary extended partition as readonly when the
root filesystem is contained into a logical partition that has been set
readonly.
* bilibop-rules: rewrite initramfs-tools script to not depend on
bilibop-common functions.
* Rewrite unclear or ambiguous parts of the documentation, and fix typos.
* Remove unneeded files from the source.
-- bilibop project <quidame@poivron.org> Fri, 08 Jun 2012 01:48:59 +0200
bilibop (0.1) unstable; urgency=low
* Initial Release (Closes: #675467).
-- bilibop project <quidame@poivron.org> Fri, 01 Jun 2012 00:06:51 +0200
|