#!/bin/sh
if ! [ -x /snap/bin/lxc ]; then
    echo "Command '$0' requires the lxd snap to be installed." >2
    echo "Please install it with:" >2
    echo "" >2
    echo "snap install lxd" >2
fi
exec /snap/bin/lxc "$@"
