diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-25 10:58:50 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-25 18:19:02 +0100 |
commit | 993b9057724e72d354d4f22e949e209879ab75be (patch) | |
tree | 5ac52bb940b67f091ca1e9c837bf2b98bc65e54e /test | |
parent | c42234abf2b47ae15ac728a15c21b1de3c852f77 (diff) | |
download | systemd-993b9057724e72d354d4f22e949e209879ab75be.tar.gz |
test: don't provide password to deactivation
deactivation of home areas should work without any password being
supplied. Let's hence not supply it, to ensure things work correctly.
Diffstat (limited to 'test')
-rwxr-xr-x | test/units/testsuite-46.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/units/testsuite-46.sh b/test/units/testsuite-46.sh index 1e83657c05..1ca5f03302 100755 --- a/test/units/testsuite-46.sh +++ b/test/units/testsuite-46.sh @@ -69,7 +69,7 @@ inspect test-user PASSWORD=xEhErW0ndafV4s homectl activate test-user inspect test-user -PASSWORD=xEhErW0ndafV4s homectl deactivate test-user +homectl deactivate test-user inspect test-user PASSWORD=xEhErW0ndafV4s homectl update test-user --real-name="Offline test" @@ -78,7 +78,7 @@ inspect test-user PASSWORD=xEhErW0ndafV4s homectl activate test-user inspect test-user -PASSWORD=xEhErW0ndafV4s homectl deactivate test-user +homectl deactivate test-user inspect test-user # Do some resize tests, but only if we run on real kernels, as quota inside of containers will fail @@ -110,7 +110,7 @@ if ! systemd-detect-virt -cq ; then PASSWORD=xEhErW0ndafV4s homectl resize test-user 256M inspect test-user - PASSWORD=xEhErW0ndafV4s homectl deactivate test-user + homectl deactivate test-user inspect test-user fi |