Add missing deps

Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
This commit is contained in:
Petr "Stone" Hracek 2017-06-01 13:31:31 +02:00
commit 23625b7b53
4 changed files with 4 additions and 5 deletions

View file

@ -7,7 +7,7 @@ LABEL MAINTAINER "Petr Hracek" <phracek@redhat.com>
COPY repos/* /etc/yum.repos.d/
RUN microdnf --nodocs --enablerepo fedora install findutils libtevent && \
microdnf --nodocs --enablerepo perl install perl perl-Time-HiRes && \
microdnf --nodocs --enablerepo sssd install sssd sssd-dbus realmd && \
microdnf --nodocs --enablerepo sssd install sssd sssd-dbus sssd-common realmd && \
microdnf -y clean all
RUN rm -f /usr/bin/sss_ssh_authorizedkeys
COPY dbus.service /etc/systemd/system/dbus.service

View file

@ -1,4 +1,4 @@
MODULE_LINT=/usr/share/moduleframework/tools/modulelint.py
MODULE_LINT=/home/phracek/work/programming/modularity-testing-framework/tools/modulelint.py
CMD=python -m avocado run --filter-by-tags=-WIP $(MODULE_LINT) *.py
#

View file

@ -14,7 +14,6 @@ packages:
- sssd-tools
module:
docker:
start: "docker run -it"
source: https://github.com/container-images/sssd.git
container: docker.io/modularitycontainers/sssd
rpm:

View file

@ -34,8 +34,8 @@ class SanitySSSDCheck(module_framework.AvocadoTest):
def test_sssd_exist(self):
self.start()
self.run("ls /usr/bin/sssd")
self.run("/usr/bin/sssd")
self.run("ls /usr/sbin/sssd")
self.run("/usr/sbin/sssd")
if __name__ == '__main__':