From 3dbe3436d14ea95810c79422f6dff2bfd952bce5 Mon Sep 17 00:00:00 2001 From: Adrien Waksberg Date: Sun, 17 Mar 2019 09:52:13 +0100 Subject: [PATCH] fix: no show log with luks password --- CHANGELOG.md | 1 + tasks/main.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24331c1..16a8087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). Which is based on [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] +- fix: no show log with luks password ## [1.0.0] - 2019-03-16 - first version diff --git a/tasks/main.yml b/tasks/main.yml index 67972c9..c993dbe 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -36,6 +36,7 @@ fstype: '{{ item.fstype }}' dev: '/dev/mapper/{{ item.name }}' loop: '{{ luks_devices }}' + no_log: true tags: luks - name: mount partition @@ -46,4 +47,5 @@ opts: noauto state: mounted loop: '{{ luks_devices }}' + no_log: true tags: luks