Documentation ¶
Index ¶
Constants ¶
View Source
const ( // GitalyDataPrefix is the top-level directory we use to store system // (non-user) data. We need to be careful that this path does not clash // with any directory name that could be provided by a user. The '+' // character is not allowed in GitLab namespaces or repositories. GitalyDataPrefix = "+gitaly" // TmpRootPrefix is the directory in which we store temporary // directories. TmpRootPrefix = GitalyDataPrefix + "/tmp" // MaxAge is used by ForDeleteAllRepositories. It is also a fallback // for the context-scoped temporary directories, to ensure they get // cleaned up if the cleanup at the end of the context failed to run. MaxAge = 7 * 24 * time.Hour )
Variables ¶
This section is empty.
Functions ¶
func ForDeleteAllRepositories ¶ added in v0.103.0
ForDeleteAllRepositories returns a temporary directory for the given storage. It is not context-scoped but it will get removed eventuall (after MaxAge).
func New ¶
New returns the path of a new temporary directory for use with the repository. The directory is removed with os.RemoveAll when ctx expires.
func NewAsRepository ¶ added in v0.96.0
func NewAsRepository(ctx context.Context, repo *gitalypb.Repository) (*gitalypb.Repository, string, error)
NewAsRepository is the same as New, but it returns a *gitalypb.Repository for the created directory as well as the bare path as a string
func StartCleaning ¶ added in v0.74.0
func StartCleaning()
StartCleaning starts tempdir cleanup goroutines.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.