Cron and FTP queries
[hcoop/zz_old/domtool2-proto.git] / src / main.sig
CommitLineData
e680130a 1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
ae3a5b8c 17 *)
e680130a 18
19(* Main interface *)
20
21signature MAIN = sig
22
53d222a3 23 val init : unit -> unit
e680130a 24
17ef447e 25 val check : string -> Env.env * Ast.exp option
26 val check' : Env.env -> string -> Env.env
f92c6883 27 val checkDir : string -> unit
17ef447e 28
29 val basis : unit -> Env.env
30
31 val reduce : string -> Ast.exp option
a11c0ff3 32 val eval : string -> unit
e680130a 33
1f8889bd 34 val request : string -> unit
c8a739af 35 val requestDir : string -> unit
36
93176f2b 37 val requestPing : unit -> OS.Process.status
4c68bd31 38 val requestShutdown : unit -> unit
e2130d9c 39 val requestGrant : Acl.acl -> unit
d1aa6a21 40 val requestRevoke : Acl.acl -> unit
646381db 41 val requestListPerms : string -> (string * string list) list option
d0e75410 42 val requestWhoHas : {class : string, value : string} -> string list option
aba1f07e 43 val requestRmdom : string list -> unit
f92c6883 44 val requestRegen : unit -> unit
aba1f07e 45 val requestRmuser : string -> unit
e2130d9c 46
aef9c54f 47 val requestSlavePing : unit -> OS.Process.status
48 val requestSlaveShutdown : unit -> unit
49
2569e66d 50 val service : unit -> unit
d330d9b8 51 val slave : unit -> unit
1f8889bd 52
e26d6b6e 53 val listBasis : unit -> string list
91c5a390 54 val autodocBasis : string -> unit
55
2bc895e7 56 val requestDbUser : {dbtype : string, passwd : string option} -> unit
dc6789fc 57 val requestDbPasswd : {dbtype : string, passwd : string} -> unit
d34cbcb8 58 val requestDbTable : {dbtype : string, dbname : string} -> unit
634d7082 59
0a58b2f3 60 val requestListMailboxes : string -> Vmail.listing
c45f1662 61 val requestNewMailbox : {domain : string, user : string,
62 passwd : string, mailbox : string} -> unit
63 val requestPasswdMailbox : {domain : string, user : string, passwd : string}
64 -> unit
65 val requestRmMailbox : {domain : string, user : string} -> unit
bb8cc8c9 66
67 val requestSaQuery : string -> unit
68 val requestSaSet : string * bool -> unit
c685120e 69
70 val requestSmtpLog : string -> unit
8301e970 71
72 val requestApt : {node : string, pkg : string} -> OS.Process.status
891b033c 73 val requestCron : {node : string, uname : string} -> OS.Process.status
74 val requestFtp : {node : string, uname : string} -> OS.Process.status
e680130a 75end