diff options
Diffstat (limited to 'server/wallet-report')
| -rwxr-xr-x | server/wallet-report | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/server/wallet-report b/server/wallet-report index 6d1436c..77a2f8a 100755 --- a/server/wallet-report +++ b/server/wallet-report @@ -24,6 +24,7 @@ Wallet reporting help:    objects acl <acl>             Objects granting permissions to that ACL    objects flag <flag>           Objects with that flag set    objects history               History of all objects +  objects host <hostname>       All host-based objects for a specific host    objects owner <owner>         Objects owned by that owner    objects type <type>           Objects of that type    objects unused                Objects that have never been gotten @@ -81,6 +82,8 @@ sub command {          my @objects;          if (@args && $args[0] eq 'history') {              @objects = $report->objects_history (@args); +        } elsif (@args && $args[0] eq 'host') { +            @objects = $report->objects_hostname (@args);          } else {              @objects = $report->objects (@args);          } | 
