search for: sm_password

Displaying 4 results from an estimated 4 matches for "sm_password".

Did you mean: s_password
2015 Jul 17
0
[PATCH 2/2] customize: add basic subscription-manager operations
...on-manager credentials required for --sm-register") + | Some c -> c in + let cmd = sprintf "subscription-manager register --username=%s --password=%s" + (quote creds.Subscription_manager.sm_username) + (quote creds.Subscription_manager.sm_password) in + do_run ~display:"subscription-manager register" cmd + + | `SMRemove -> + message (f_"Removing all the subscriptions"); + let cmd = "subscription-manager remove --all" in + do_run ~display:cmd cmd + + | `SMUnregister -> + messa...
2015 Jul 17
4
[PATCH v2 0/2] basic subscription-manager support in virt-customize
Hi, this is the v2 of a series introducing basic support for registering/attaching/unregistering RHEL guests using subscription-manager, so it is possible to do for example: $ virt-customize -a rhel-guest.qcow2 \ --sm-credentials user:file:/path/to/password-file --sm-register \ --sm-attach file:/path/to/pool-file \ --install pkg1 --install pkg2 .. \ --sm-remove --sm-unregister
2016 Jun 13
1
[PATCH v2] sysprep: Add --network to enable the network (RHBZ#1345813).
...) | `SMRegister -> @@ -317,17 +322,18 @@ exec >>%s 2>&1 let cmd = sprintf "subscription-manager register --username=%s --password=%s" (quote creds.Subscription_manager.sm_username) (quote creds.Subscription_manager.sm_password) in - do_run ~display:"subscription-manager register" cmd + do_run ~display:"subscription-manager register" + ~warn_failed_no_network:true cmd | `SMRemove -> message (f_"Removing all the subscriptions"); let cmd = "sub...
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...mize/subscription_manager.ml index 1e6e25de3..a23efe546 100644 --- a/customize/subscription_manager.ml +++ b/customize/subscription_manager.ml @@ -37,7 +37,7 @@ and parse_credentials_selector_list orig_arg = function | [ username; "file"; filename ] -> { sm_username = username; sm_password = read_first_line_from_file filename } | _ -> - error (f_"invalid sm-credentials selector '%s'; see the man page") orig_arg + error (f_"invalid sm-credentials selector ‘%s’; see the man page") orig_arg let rec parse_pool_selector arg = parse_pool_select...