#!/bin/bash ### # Copyright 2013 Willem Vermin, SURFsara # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ### usage() { echo "Usage: $0 [-p pool]" } if [ "$1" = "-h" ]; then usage exit 0 fi if [ "$1" = "-p" ]; then shift pool="$1" shift fi if [ -n "$1" ]; then usage exit 1 fi while true ; do if [ -n "$pool" ] ; then eval "`stoposclient -p "$pool" dump 2>/dev/null`" else eval "`stoposclient dump 2>/dev/null`" fi if [ "$STOPOS_RC" != "OK" ] ; then break fi printf '%s\t%s\t%s\n' "$STOPOS_KEY" "$STOPOS_COMMITTED" "$STOPOS_VALUE" done