diff options
author | Micael Karlberg <[email protected]> | 2011-10-07 13:38:40 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-10-07 13:38:40 +0200 |
commit | b3929cdc4479170842d36a7f2ba757ff052e098b (patch) | |
tree | 512154e6fe5ca300a1283126684c7818c26fd76c /lib/snmp/src | |
parent | 00202339445daae6ed931f28f932089d5c3dd455 (diff) | |
download | otp-b3929cdc4479170842d36a7f2ba757ff052e098b.tar.gz otp-b3929cdc4479170842d36a7f2ba757ff052e098b.tar.bz2 otp-b3929cdc4479170842d36a7f2ba757ff052e098b.zip |
[compiler] Improve version info printout.
OTP-9618
Diffstat (limited to 'lib/snmp/src')
-rw-r--r-- | lib/snmp/src/app/snmp.appup.src | 8 | ||||
-rw-r--r-- | lib/snmp/src/compile/snmpc.src | 19 |
2 files changed, 26 insertions, 1 deletions
diff --git a/lib/snmp/src/app/snmp.appup.src b/lib/snmp/src/app/snmp.appup.src index 0b6ea93231..e311377b2f 100644 --- a/lib/snmp/src/app/snmp.appup.src +++ b/lib/snmp/src/app/snmp.appup.src @@ -22,6 +22,10 @@ %% ----- U p g r a d e ------------------------------------------------------- [ + {"4.21.1", + [ + ] + }, {"4.21", [ {load_module, snmp_target_mib, soft_purge, soft_purge, []} @@ -115,6 +119,10 @@ %% ------D o w n g r a d e --------------------------------------------------- [ + {"4.21.1", + [ + ] + }, {"4.21", [ {load_module, snmp_target_mib, soft_purge, soft_purge, []} diff --git a/lib/snmp/src/compile/snmpc.src b/lib/snmp/src/compile/snmpc.src index f993335b89..8760ce14b5 100644 --- a/lib/snmp/src/compile/snmpc.src +++ b/lib/snmp/src/compile/snmpc.src @@ -221,7 +221,10 @@ process_args([], #state{verbosity = Verbosity0, file = MIB} = State) -> process_args(["--help"|_Args], _State) -> ok; process_args(["--version"|_Args], #state{version = Version, mfv = MFV} = _State) -> - {ok, lists:flatten(io_lib:format("snmpc ~s (~s)", [Version, MFV]))}; + OtpVersion = otp_release(), + {ok, lists:flatten( + io_lib:format("snmpc ~s [Mib format version ~s] (OTP ~s)", + [Version, MFV, OtpVersion]))}; process_args(["--verbosity", Verbosity0|Args], #state{verbosity = V} = State) when (V =:= undefined) -> Verbosity = list_to_atom(Verbosity0), @@ -398,3 +401,17 @@ usage() -> e(Reason) -> throw({error, Reason}). + +otp_release() -> + system_info(otp_release, string). + +system_info(Tag, Type) -> + case (catch erlang:system_info(Tag)) of + {'EXIT', _} -> + "-"; + Info when is_list(Info) andalso (Type =:= string) -> + Info; + Info -> + lists:flatten(io_lib:format("~w", [Info])) + end. + |