perl/config.over

22 lines
460 B
Bash

#!/bin/sh
case "$osname" in
linux)
osvers=6.12.0
osdesc="#1 smp preempt_dynamic $osvers"
os=gnulinux
;;
esac
# set configuration time
cf_time=$(LC_ALL=C date --utc -d @$SOURCE_DATE_EPOCH)
# set generic information for reproducibility
myhostname=localhost
mydomain=
machine_uname=$(uname -m | tr '[A-Z]' '[a-z]' | sed -e "s,['/],,g")
if [ -n "$osdesc" ]; then
myuname="$osname $myhostname $osvers $osdesc $machine_uname $os "
fi