Skip to content

Commit 683d93f

Browse files
committed
fixup! CA-383867: Add local disk cache library for xapi guard
1 parent 1648f9c commit 683d93f

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

ocaml/xapi-guard/lib/disk_cache.ml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
(* Copyright (C) Cloud Software Group, Inc.
2+
3+
This program is free software; you can redistribute it and/or modify
4+
it under the terms of the GNU Lesser General Public License as published
5+
by the Free Software Foundation; version 2.1 only. with the special
6+
exception on linking described in file LICENSE.
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
GNU Lesser General Public License for more details.
12+
*)
13+
114
let ( // ) = Filename.concat
215

316
let runtime_data = "/var/lib" // "xapi-guard"

ocaml/xapi-guard/lib/disk_cache.mli

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
(* Copyright (C) Cloud Software Group, Inc.
2+
3+
This program is free software; you can redistribute it and/or modify
4+
it under the terms of the GNU Lesser General Public License as published
5+
by the Free Software Foundation; version 2.1 only. with the special
6+
exception on linking described in file LICENSE.
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
GNU Lesser General Public License for more details.
12+
*)
13+
114
type t = Uuidm.t * Mtime.t * Types.Tpm.key
215

316
val setup :

0 commit comments

Comments
 (0)