Adding some library functions that'll facilitate the creation of vsys scripts.
[vsys.git] / globals.ml
1 (** Some things that didn't fit in elsewhere *)
2 let backend = ref ""
3 let debug = ref true
4 let vsys_version = "0.5"
5 let nochroot = ref false
6
7 type result = Success | Failed
8
9 type fname_and_fd = string option * Unix.file_descr
10
11 (* Relative path, never precededed by a '/' *)
12 type relpath = Relpath of string
13
14 exception Bad_path 
15 exception Bug