mirror of
https://github.com/kairos-io/provider-rke2.git
synced 2025-09-25 12:16:55 +00:00
8 lines
202 B
Bash
8 lines
202 B
Bash
#!/bin/sh -x
|
|
|
|
CONTENT_PATH=$1
|
|
mkdir -p /var/lib/rancher/rke2/agent/images
|
|
find -L "$CONTENT_PATH" -name "*.tar" -type f | while read -r tarfile; do
|
|
cp $tarfile /var/lib/rancher/rke2/agent/images
|
|
done
|