diff options
author | tv <tv@nomic.retiolum> | 2013-11-14 14:13:35 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-11-14 14:13:35 +0100 |
commit | fd3ddc6abe23f83f304c2043fe9cabe1ee8a622c (patch) | |
tree | 9c37722d024cfeae6a2789df1e30f247c98ed89b /ship/src/punani | |
parent | 36a7b004e2d3bbc3858a6378b3ef19ea3e15f4a1 (diff) |
ship punani: add experimental owner interface
Diffstat (limited to 'ship/src/punani')
-rwxr-xr-x | ship/src/punani | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ship/src/punani b/ship/src/punani index 61043bc0..2c956f02 100755 --- a/ship/src/punani +++ b/ship/src/punani @@ -2,7 +2,7 @@ #@info #@include punani punani(){ - _punani_usage='punani {install,remove,has} PACKAGE...' + _punani_usage='punani {install,remove,has,owner} PACKAGE...' _punani_select_packer || die 'no package manager found; no punani for you!' ACTION="$1"; shift @@ -38,6 +38,9 @@ punani(){ info "$RES is not installed" fi ;; + owner) + punani_owner $RES + ;; *) error "bad action: $ACTION" die "usage: $_punani_usage" |