mirror of
https://github.com/rancher/os.git
synced 2025-05-03 05:36:19 +00:00
11 lines
192 B
Bash
Executable File
11 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
OUTPUT=build/initrd/usr/share/ros
|
|
mkdir -p $OUTPUT
|
|
./bin/host_ros c generate < os-config.tpl.yml > $OUTPUT/os-config.yml
|