Apt package installation querying of dispatcher
[hcoop/domtool2.git] / src / main-admin.sml
... / ...
CommitLineData
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.
17 *)
18
19(* Driver for admin requests *)
20
21fun requestPerms user =
22 case Main.requestListPerms user of
23 NONE => ()
24 | SOME classes =>
25 (print ("Permissions for " ^ user ^ ":\n");
26 app (fn (class, values) =>
27 (print (class ^ ":");
28 app (fn value => print (" " ^ value)) values;
29 print "\n")) classes)
30
31val _ =
32 case CommandLine.arguments () of
33 ["shutdown"] => Main.requestShutdown ()
34 | ["grant", user, class, value] => Main.requestGrant {user = user, class = class, value = value}
35 | ["revoke", user, class, value] => Main.requestRevoke {user = user, class = class, value = value}
36 | ["perms", user] => requestPerms user
37 | ["perms"] => requestPerms (Posix.SysDB.Passwd.name (Posix.SysDB.getpwuid (Posix.ProcEnv.getuid ())))
38 | ["whohas", class, value] =>
39 (case Main.requestWhoHas {class = class, value = value} of
40 NONE => ()
41 | SOME users =>
42 (print ("whohas " ^ class ^ " / " ^ value ^ ":");
43 app (fn user => print (" " ^ user)) users;
44 print "\n"))
45 | "rmdom" :: doms => Main.requestRmdom doms
46 | ["regen"] => Main.requestRegen ()
47 | ["rmuser", user] => Main.requestRmuser user
48 | ["ping"] => OS.Process.exit (Main.requestPing ())
49 | ["slave-shutdown"] => Main.requestSlaveShutdown ()
50 | ["slave-ping"] => OS.Process.exit (Main.requestSlavePing ())
51 | ["package", node, pkg] => OS.Process.exit (Main.requestApt {node = node, pkg = pkg})
52 | _ => print "Invalid command-line arguments\n"