bin: update

This commit is contained in:
Luc Bijl 2025-08-17 15:01:12 +02:00
parent 0cc125394f
commit a93593061c
5 changed files with 35 additions and 3 deletions

12
bin/load-volumes Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
command="/usr/bin/podman"
# Imports volumes
volumes=""
for volume in $volumes
do
$command volume import $volume /home/neutrino/.volumes/${volume}.tar
done