diff --git a/tools/cleanup-host b/tools/cleanup-host
index 1fc0c7aed998a0624891a063797d40440dc74ba6..5bb357c4aceb98bf69d351a2e5e062f63a6e0057 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