summaryrefslogtreecommitdiff
path: root/Types/CleanupActions.hs
blob: decd2f873407b035e6d5331456303e894b196501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{- Enumeration of cleanup actions
 -
 - Copyright 2014 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Types.CleanupActions where

import Types.UUID

data CleanupAction
	= RemoteCleanup UUID
	| StopHook UUID
	| FsckCleanup
	deriving (Eq, Ord)