From 97d857593759f96f036a7e0a528cb6f2159e0fc7 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Thu, 19 Dec 2019 07:38:45 -0600 Subject: [PATCH] Remove Sheepdog plugin information The Sheepdog project has been defunct for awhile now, and the Sheepdog driver and os-brick connector is now being removed from Cinder. This cleans up plugin references for the driver. Change-Id: Ieb2d9cf653b2d3a4af30cab26b8428a7c7edff98 Signed-off-by: Sean McGinnis --- lib/cinder_plugins/sheepdog | 41 ------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 lib/cinder_plugins/sheepdog diff --git a/lib/cinder_plugins/sheepdog b/lib/cinder_plugins/sheepdog deleted file mode 100644 index 558de46c6d..0000000000 --- a/lib/cinder_plugins/sheepdog +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -# -# lib/cinder_plugins/sheepdog -# Configure the sheepdog driver - -# Enable with: -# -# CINDER_DRIVER=sheepdog - -# Dependencies: -# -# - ``functions`` file -# - ``cinder`` configurations - -# configure_cinder_driver - make configuration changes, including those to other services - -# Save trace setting -_XTRACE_CINDER_SHEEPDOG=$(set +o | grep xtrace) -set +o xtrace - - -# Defaults -# -------- - -# Set up default directories - - -# Entry Points -# ------------ - -# configure_cinder_driver - Set config files, create data dirs, etc -function configure_cinder_driver { - iniset $CINDER_CONF DEFAULT volume_driver "cinder.volume.drivers.sheepdog.SheepdogDriver" -} - -# Restore xtrace -$_XTRACE_CINDER_SHEEPDOG - -# Local variables: -# mode: shell-script -# End: