12 lines
173 B
Bash
Executable file
12 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
|
|
command="/usr/bin/podman"
|
|
|
|
# Imports volumes
|
|
|
|
volumes=""
|
|
|
|
for volume in $volumes
|
|
do
|
|
$command volume import $volume /home/neutrino/.volumes/${volume}.tar
|
|
done
|