2014-03-13 19:06:26 -04:00
|
|
|
{- Enumeration of cleanup actions
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2014 Joey Hess <id@joeyh.name>
|
2014-03-13 19:06:26 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.CleanupActions where
|
|
|
|
|
|
|
|
import Types.UUID
|
|
|
|
|
2014-12-16 23:22:46 -04:00
|
|
|
import Utility.Url
|
|
|
|
|
2014-03-13 19:06:26 -04:00
|
|
|
data CleanupAction
|
|
|
|
= RemoteCleanup UUID
|
|
|
|
| StopHook UUID
|
|
|
|
| FsckCleanup
|
2014-03-13 19:30:13 -04:00
|
|
|
| SshCachingCleanup
|
2014-12-16 23:22:46 -04:00
|
|
|
| TorrentCleanup URLString
|
2014-03-13 19:06:26 -04:00
|
|
|
deriving (Eq, Ord)
|