mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
533994daff
kubernetes/kubernetes#111083 has been merged and synced into k8s.io/mount-utils. This should remove any systemd log messages while calling NodeStageVolume and NodeGetVolumeStats. Signed-off-by: Niels de Vos <ndevos@redhat.com>
11 lines
181 B
Go
11 lines
181 B
Go
package mountinfo
|
|
|
|
func parseMountTable(_ FilterFunc) ([]*Info, error) {
|
|
// Do NOT return an error!
|
|
return nil, nil
|
|
}
|
|
|
|
func mounted(_ string) (bool, error) {
|
|
return false, nil
|
|
}
|