[ARVADOS] updated: 2.1.0-467-gaffd80401
Git user
git at public.arvados.org
Thu Feb 25 22:56:26 UTC 2021
Summary of changes:
.../compute-images/scripts/usr-local-bin-ensure-encrypted-partitions.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via affd80401d1ce578de5216a5328949d759ab495c (commit)
from 89a3090417e1f8241497a1d26425df9c5d2cb3ba (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 affd80401d1ce578de5216a5328949d759ab495c
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