You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
313 B
16 lines
313 B
#!/bin/bash
|
|
# Author: Christoph Galuschka <tigalch@tigalch.org>
|
|
# Rene Diepstraten <rene@renediepstraten.nl>
|
|
|
|
if (t_GetPkgRel basesystem | grep -q el9)
|
|
then
|
|
t_Log "This is a C9 system. Skipping."
|
|
t_CheckExitStatus 0
|
|
exit $PASS
|
|
fi
|
|
|
|
|
|
# Install requirements
|
|
t_InstallPackage arpwatch psmisc net-tools
|
|
|