- Implement a storage plugin for Proxmox. Now you can use Vitastor with Proxmox! - Implement `vitastor-cli df` (pool space usage statistics) command - Add glob pattern support for `vitastor-cli ls` - Fix several bugs in other CLI commands (resize, create --parent, modify --readonly) - Use 512 byte logical block size in QEMU driver by default (and thus don't require to set it in QEMU options)
8 lines
101 B
CMake
8 lines
101 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(vitastor)
|
|
|
|
set(VERSION "0.6.10")
|
|
|
|
add_subdirectory(src)
|