From 7f2dd73dcc51cf307c4fa6614898f471d73862a4 Mon Sep 17 00:00:00 2001
From: Mauricio Lima <mauriciolimab@gmail.com>
Date: Mon, 28 Mar 2016 14:09:23 -0400
Subject: [PATCH] Add a step to clean all ceph references in fstab

After run cleanup-containers script, was necessary to
clear references to the ceph in fstab file manually

Change-Id: I264e6644d5d569a9b56115ea31b15589b093c3f9
Closes-Bug: #1562991
---
 tools/cleanup-host | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tools/cleanup-host b/tools/cleanup-host
index 1fc0c7aed..5bb357c4a 100755
--- a/tools/cleanup-host
+++ b/tools/cleanup-host
@@ -26,3 +26,9 @@ ip -o link show | awk -F': ' '/vxlan/{print $2}' | while read -r ifname ; do
     echo "Removing vxlan interface $ifname on the host"
     ip link delete $ifname type vxlan
 done
+
+echo "Creating a fstab backup..."
+sudo cp /etc/fstab /etc/fstab_backup
+
+echo "Removing ceph references from fstab..."
+sudo sed -i '/\/var\/lib\/ceph\/osd\//d' /etc/fstab
-- 
GitLab