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
282 B
16 lines
282 B
#!/bin/dash
|
|
|
|
##
|
|
# This creates function that will gather some system informations
|
|
# and propagate them as environment variables.
|
|
#
|
|
|
|
. ./utils.sh
|
|
include_once system_information.sh
|
|
|
|
echo "foo ${NPROC}"
|
|
CPUS=$(${NPROC})
|
|
|
|
export CLASSES="${CLASSES}${CPUS}cpus "
|
|
|
|
# vim: set ts=4 sw=4:
|