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