search for: ba661c3

Displaying 2 results from an estimated 2 matches for "ba661c3".

2009 Jun 12
1
[PATCH node] o-c-config will only run when local storage is configured. rhbz#505560
...ot configured then it reports an error and exits. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-logging | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-config-logging b/scripts/ovirt-config-logging index 5da991f..ba661c3 100755 --- a/scripts/ovirt-config-logging +++ b/scripts/ovirt-config-logging @@ -8,6 +8,11 @@ trap '__st=$?; stop_log; exit $__st' 0 trap 'exit $?' 1 2 13 15 +if ! is_local_storage_configured; then + printf "Local storage must be configured prior to configuring the loggi...
2009 Jun 30
2
[PATCH node] Make all yes/no prompts consistent. rhbz#508778
...ak + ;; + 2) + printf "\nAborting collectd configuration.\n" + return + ;; + esac done done } diff --git a/scripts/ovirt-config-logging b/scripts/ovirt-config-logging index ba661c3..bb0f082 100755 --- a/scripts/ovirt-config-logging +++ b/scripts/ovirt-config-logging @@ -146,27 +146,30 @@ function prompt_user { printf "\n" printf "\n" while true; do - read -p "Is this correct (Y/N/A)? " - r=$(echo $...