mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
14 lines
362 B
Bash
14 lines
362 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# LXD HELPERS
|
|
#=================================================
|
|
|
|
ynh_lxc_snapshot_exists () {
|
|
local snapname=$1
|
|
lxc list --format json \
|
|
| jq -e --arg LXC_NAME $LXC_NAME --arg snapname $snapname \
|
|
'.[] | select(.name==$LXC_NAME) | .snapshots[] | select(.name==$snapname)' \
|
|
>/dev/null
|
|
}
|
|
|