mirror of
https://github.com/kairos-io/provider-k3s.git
synced 2025-10-21 05:28:56 +00:00
8 lines
203 B
Bash
Executable File
8 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
CONTENT_PATH=$1
|
|
mkdir -p /var/lib/rancher/k3s/agent/images
|
|
|
|
find -L "$CONTENT_PATH" -name "*.tar" -type f | while read -r tarfile; do
|
|
cp $tarfile /var/lib/rancher/k3s/agent/images
|
|
done |