forked from Mirrors/nixos-infect
xzcat dep check
This commit is contained in:
parent
f42e554a40
commit
10e8dfe80a
1 changed files with 4 additions and 0 deletions
|
@ -212,6 +212,9 @@ checkEnv() {
|
||||||
which bzcat || (which yum && yum install -y bzip2) \
|
which bzcat || (which yum && yum install -y bzip2) \
|
||||||
|| (which apt-get && apt-get update && apt-get install -y bzip2) \
|
|| (which apt-get && apt-get update && apt-get install -y bzip2) \
|
||||||
|| true
|
|| true
|
||||||
|
which xzcat || (which yum && yum install -y xz-utils) \
|
||||||
|
|| (which apt-get && apt-get update && apt-get install -y xz-utils) \
|
||||||
|
|| true
|
||||||
which curl || fakeCurlUsingWget \
|
which curl || fakeCurlUsingWget \
|
||||||
|| (which apt-get && apt-get update && apt-get install -y curl) \
|
|| (which apt-get && apt-get update && apt-get install -y curl) \
|
||||||
|| true
|
|| true
|
||||||
|
@ -220,6 +223,7 @@ checkEnv() {
|
||||||
|
|
||||||
req curl || req wget || { echo "ERROR: Missing both curl and wget"; return 1; }
|
req curl || req wget || { echo "ERROR: Missing both curl and wget"; return 1; }
|
||||||
req bzcat || { echo "ERROR: Missing bzcat"; return 1; }
|
req bzcat || { echo "ERROR: Missing bzcat"; return 1; }
|
||||||
|
req xzcat || { echo "ERROR: Missing xzcat"; return 1; }
|
||||||
req groupadd || { echo "ERROR: Missing groupadd"; return 1; }
|
req groupadd || { echo "ERROR: Missing groupadd"; return 1; }
|
||||||
req useradd || { echo "ERROR: Missing useradd"; return 1; }
|
req useradd || { echo "ERROR: Missing useradd"; return 1; }
|
||||||
req ip || { echo "ERROR: Missing ip"; return 1; }
|
req ip || { echo "ERROR: Missing ip"; return 1; }
|
||||||
|
|
Loading…
Reference in a new issue