mirror of
https://github.com/rancher/os.git
synced 2025-05-09 00:26:21 +00:00
13 lines
144 B
Bash
Executable File
13 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ "$ROOTFS" != "0" ]; then
|
|
./package-rootfs
|
|
fi
|
|
./package-initrd
|
|
./package-installer
|
|
./package-iso
|
|
|