mirror of
https://github.com/MillironX/singularity-builds.git
synced 2024-11-01 00:23:10 +00:00
33 lines
604 B
Modula-2
33 lines
604 B
Modula-2
|
Bootstrap: library
|
||
|
From: default/centos:latest
|
||
|
|
||
|
%post
|
||
|
dnf install pigz procps-ng -y
|
||
|
|
||
|
%test
|
||
|
if [ ! "$(command -v pigz)" ]; then
|
||
|
echo "command julia not found!"
|
||
|
FAILED_TESTS="TRUE"
|
||
|
fi
|
||
|
|
||
|
if [ ! "$(command -v bash)" ]; then
|
||
|
echo "command bash not found!"
|
||
|
FAILED_TESTS="TRUE"
|
||
|
fi
|
||
|
|
||
|
if [ ! "$(command -v ps)" ]; then
|
||
|
echo "command ps not found!"
|
||
|
FAILED_TESTS="TRUE"
|
||
|
fi
|
||
|
|
||
|
if [ -n "$FAILED_TESTS" ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
%runscript
|
||
|
pigz "$@"
|
||
|
|
||
|
%labels
|
||
|
Author 25492070+MillironX@users.noreply.github.com
|
||
|
Version v2.3.1
|