1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 14:48:55 +00:00
Files
os/scripts/package-rootfs

16 lines
291 B
Plaintext
Raw Normal View History

2016-05-06 10:12:09 -07:00
#!/bin/bash
set -e
2016-06-06 16:06:10 -07:00
set -o pipefail
2016-05-06 10:12:09 -07:00
cd $(dirname $0)/..
2016-06-06 16:06:10 -07:00
source scripts/version
2016-05-06 10:12:09 -07:00
BUILD=$(pwd)/build
INITRD_DIR=${BUILD}/initrd
ARTIFACTS=$(pwd)/dist/artifacts
2018-10-11 16:18:09 +08:00
mkdir -p ${ARTIFACTS}
2016-05-06 10:12:09 -07:00
2018-10-11 16:18:09 +08:00
tar czf ${ARTIFACTS}/rootfs${SUFFIX}.tar.gz --exclude lib/modules --exclude lib/firmware -C ${INITRD_DIR} .