Fix "unary operator expected" error

Change-Id: I1763bbac6e24ea396c049c08807ea14f23e3c39b
This commit is contained in:
Paul Hummer 2016-11-24 06:28:17 +00:00
parent 9bf9db7e52
commit 43a07cef1c
1 changed files with 3 additions and 3 deletions

View File

@ -110,9 +110,9 @@ function init_nova-lxd() {
function configure_lxd_block() {
echo_summary "Configure LXD storage backend"
if is_ubuntu; then
if [ $LXD_BACKEND_DRIVER == "default" ]; then
if [ "$LXD_BACKEND_DRIVER" == "default" ]; then
echo "Nothing to be done"
elif [ $LXD_BACKEND_DRIVER == "zfs" ]; then
elif [ "$LXD_BACKEND_DRIVER" == "zfs" ]; then
echo "Configuring ZFS backend"
truncate -s $LXD_LOOPBACK_DISK_SIZE $LXD_DISK_IMAGE
sudo apt-get install -y zfs
@ -130,7 +130,7 @@ function shutdown_nova-lxd() {
function cleanup_nova-lxd() {
# Cleanup the service.
if [ $LXD_BACKEND_DRIVER == "zfs" ]; then
if [ "$LXD_BACKEND_DRIVER" == "zfs" ]; then
sudo zpool destroy ${LXD_ZFS_ZPOOL}
fi
}