mirror of
https://github.com/rancher/os.git
synced 2025-07-13 22:54:03 +00:00
16 lines
246 B
Bash
16 lines
246 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
VERSION=${VERSION:?"VERSION not set"}
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
rm -rf ./build
|
||
|
mkdir -p ./build
|
||
|
|
||
|
cat > ./build/lsb-release << EOF
|
||
|
DISTRIB_ID=${DISTRIB_ID}
|
||
|
DISTRIB_RELEASE=${VERSION}
|
||
|
DISTRIB_DESCRIPTION="${DISTRIB_ID} ${VERSION}"
|
||
|
EOF
|