def purge(**kwargs): """ purge ceph configuration on the node CLI Example: .. code-block:: bash salt '*' ceph.purge """ return ceph_cfg.purge(**kwargs)
def purge(**kwargs): ''' purge ceph configuration on the node CLI Example: .. code-block:: bash salt '*' ceph.purge \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' cluster_name The cluster name. Defaults to ``ceph``. cluster_uuid The cluster UUID. Defaults to value found in ceph config file. ''' return ceph_cfg.purge(**kwargs)
def purge(**kwargs): ''' purge ceph configuration on the node CLI Example: .. code-block:: bash salt '*' ceph_cfg.purge \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: cluster_name Set the cluster name. Defaults to "ceph". cluster_uuid Set the cluster UUID. Defaults to value found in ceph config file. ''' return ceph_cfg.purge(**kwargs)