mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-02-08 04:19:29 +00:00
8 lines
219 B
Go
8 lines
219 B
Go
|
package configs
|
||
|
|
||
|
const (
|
||
|
// EXT_COPYUP is a directive to copy up the contents of a directory when
|
||
|
// a tmpfs is mounted over it.
|
||
|
EXT_COPYUP = 1 << iota //nolint:golint,revive // ignore "don't use ALL_CAPS" warning
|
||
|
)
|