1
0
mirror of https://github.com/rancher/os.git synced 2025-06-23 21:47:03 +00:00
os/scripts/package-rootfs

16 lines
291 B
Plaintext
Raw Normal View History

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