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.
13 lines
309 B
13 lines
309 B
10 months ago
|
#!/bin/sh
|
||
|
# Author: Christoph Galuschka <christoph.galuschka@chello.at>
|
||
|
|
||
|
t_Log "Running $0 - attempting to install gzip."
|
||
|
t_InstallPackage gzip zip diffutils less util-linux-ng expect
|
||
|
if (t_GetPkgRel basesystem | grep -q el9)
|
||
|
then
|
||
|
t_Log "Ncompress unavailable in el9"
|
||
|
else
|
||
|
t_InstallPackage ncompress
|
||
|
fi
|
||
|
|