mirror of
https://github.com/rancher/os.git
synced 2025-08-01 15:08:47 +00:00
13 lines
273 B
Bash
Executable File
13 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
rm -rf ./build
|
|
mkdir -p ./build
|
|
cp ./../01-base/entry.sh ./build/
|
|
cp ./../02-console/console.sh ./build/
|
|
cp ./../02-console/docker-init ./build/
|
|
cp ./../02-console/update-ssh-keys ./build/
|
|
cp ./../02-console/rancheros-install ./build/
|