[ARVADOS] updated: 2.1.0-110-g9e0cbddc0

Git user git at public.arvados.org
Thu Feb 25 22:57:00 UTC 2021


Summary of changes:
 .../compute-images/scripts/usr-local-bin-ensure-encrypted-partitions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

       via  9e0cbddc0b523cef04857dd54c0c4053c60543ca (commit)
      from  cc02c1a934c296c8bb94228585e2910898e9ea7d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 9e0cbddc0b523cef04857dd54c0c4053c60543ca
Author: Ward Vandewege <ward at curii.com>
Date:   Thu Feb 25 17:52:24 2021 -0500

    When a compute node comes up, we run `mkfs.xfs` on a newly encrypted
    partition. Sometimes there are ghost filesystem signatures on those
    partitions, make mkfs.xfs ignore partition signatures.
    
    No issue #
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>

diff --git a/tools/compute-images/scripts/usr-local-bin-ensure-encrypted-partitions.sh b/tools/compute-images/scripts/usr-local-bin-ensure-encrypted-partitions.sh
index 08579bf19..462158e04 100644
--- a/tools/compute-images/scripts/usr-local-bin-ensure-encrypted-partitions.sh
+++ b/tools/compute-images/scripts/usr-local-bin-ensure-encrypted-partitions.sh
@@ -114,7 +114,7 @@ head -c321 /dev/urandom >"$KEYPATH"
 echo YES | cryptsetup luksFormat "$LVPATH" "$KEYPATH"
 cryptsetup --key-file "$KEYPATH" luksOpen "$LVPATH" "$(basename "$CRYPTPATH")"
 shred -u "$KEYPATH"
-mkfs.xfs "$CRYPTPATH"
+mkfs.xfs -f "$CRYPTPATH"
 
 # First make sure docker is not using /tmp, then unmount everything under it.
 if [ -d /etc/sv/docker.io ]

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list