mirror of
https://github.com/kairos-io/provider-k3s.git
synced 2025-08-15 12:32:55 +00:00
7 lines
180 B
Bash
7 lines
180 B
Bash
set -x
|
|
CONTENT_PATH=$1
|
|
mkdir -p /var/lib/rancher/k3s/agent/images
|
|
for tarfile in $(find $CONTENT_PATH -name "*.tar" -type f)
|
|
do
|
|
cp $tarfile /var/lib/rancher/k3s/agent/images
|
|
done |