mirror of
https://github.com/kairos-io/provider-k3s.git
synced 2025-08-04 23:49:25 +00:00
7 lines
180 B
Bash
Executable File
7 lines
180 B
Bash
Executable File
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 |