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.
10 lines
294 B
10 lines
294 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Christoph Galuschka <christoph.galuschka@chello.at>
|
||
|
# Author: Rene Diepstraten <rene@renediepstraten.nl>
|
||
|
|
||
|
[[ $centos_ver -ge 7 ]] && { t_Log "busybox is not part of el${centos_ver}" ; exit ; }
|
||
|
|
||
|
t_Log "Running $0 - attempting to install busybox."
|
||
|
t_InstallPackage busybox
|
||
|
|