1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 06:40:31 +00:00
Files
os/scripts/package

15 lines
187 B
Plaintext
Raw Normal View History

2016-05-06 10:12:09 -07:00
#!/bin/bash
set -e
cd $(dirname $0)
2016-05-22 23:11:26 -07:00
if [ "$ROOTFS" != "0" ]; then
./package-rootfs
fi
2016-05-06 10:12:09 -07:00
./package-initrd
2019-05-29 14:40:50 +08:00
if [ "$ARCH" == "amd64" ]; then
./package-installer
./package-iso
fi