Remove other dependecies and passwd from debugging-tools

Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
This commit is contained in:
Petr "Stone" Hracek 2017-04-05 11:03:26 +02:00
commit 2e6a58fb5d
3 changed files with 0 additions and 18 deletions

View file

@ -18,21 +18,15 @@ data:
default:
rpms:
- iputils
- iproute
- lsof
- net-tools
- passwd
- strace
- valgrind
api:
rpms:
- iputils
- iproute
- lsof
- net-tools
- passwd
- strace
- valgrind
components:
rpms:
iputils:
@ -47,18 +41,10 @@ data:
rationale: A dependency of tangerine.
ref: master
buildorder: 10
passwd:
rationale: A dependency of tangerine.
ref: master
buildorder: 10
strace:
rationale: A dependency of tangerine.
ref: master
buildorder: 10
# passwd
libuser-devel:
rationale: build dependency.
ref: master
# iputils
perl-SGMLSpm:
rationale: build dependency.

View file

@ -29,7 +29,5 @@ test:
- 'ls /usr/sbin/arp'
- 'ls /usr/sbin/ifconfig'
- 'ls /usr/sbin/route'
# Tests for passwd
- 'ls /usr/bin/passwd'
# Tests for strace
- 'ls /usr/bin/strace'

View file

@ -43,8 +43,6 @@ class simpleTests(module_framework.AvocadoTest):
self.assertIn('arp exists!', self.runHost('ls /usr/sbin/arp').stdout)
self.assertIn('ifconfig exists!', self.runHost('ls /usr/sbin/ifconfig').stdout)
self.assertIn('route exists!', self.runHost('ls /usr/sbin/route').stdout)
# Tests for passwd
self.assertIn('passwd exists!', self.runHost('ls /usr/bin/passwd').stdout)
# Tests for strace
self.assertIn('strace exists!', self.runHost('ls /usr/bin/strace').stdout)