Suppor ansible-core; fix password_hash salt length
use tox-lsr version 2.5.1
This version removes support for molecule until we can figure out
what to do about molecule. This should make all of the tox tests
pass (except for python 2.6).
Signed-off-by: Rich Megginson [email protected]
fix password_hash salt length
Ansible 2.11 has strict checking for password_hash salt length.
If the given salt length is not equal to, or greater than, the
salt length for the hash algorithm (depending on the algorithm, the
salt length must be equal, or less than), Ansible will emit an
error like "invalid salt size". To fix this, use the truncate
filter to ensure the salt length is not too long.
Use the openssl command-line interface instead of the openssl module
in the test helper task tests/tasks/fixture_psks.yml.
This is to avoid using the non ansible-core module.
use apt-get install -y
Signed-off-by: Rich Megginson [email protected]
replace rhsm_repository with subscription-manager cli
The rhsm_repository
module is not supported by ansible-core, so
use the subscription-manager cli instead.