1
1
mirror of https://github.com/ryantm/agenix.git synced 2024-08-15 17:10:42 +03:00

Silence output

This commit is contained in:
Nathan Henrie 2023-01-30 09:06:03 -07:00
parent 351e874918
commit 4532604741

View File

@ -22,9 +22,9 @@ with lib; let
mountCommand =
if isDarwin
then ''
if ! diskutil info "${cfg.secretsMountPoint}"; then
dev="$(hdiutil attach -nomount ram://1048576 | awk '{print $1}')"
newfs_hfs "$dev"
if ! diskutil info "${cfg.secretsMountPoint}" &> /dev/null; then
mount -t hfs -o nobrowse,nodev,nosuid,-m=0751 "$dev" "${cfg.secretsMountPoint}"
fi
''