Skip to content

Commit

Permalink
Merge pull request stellar-deprecated#60 from vogel/master
Browse files Browse the repository at this point in the history
use new stellar-core syntax
  • Loading branch information
MonsieurNicolas authored Jun 15, 2019
2 parents 1a2f3a0 + 66fa0b7 commit 2070b3c
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions start
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ SQL

fi

stellar-core $CONFIG_OPTION --newdb
stellar-core $CONFIG_OPTION new-db
}

while [[ -n "$1" ]]; do
Expand All @@ -74,17 +74,17 @@ while [[ -n "$1" ]]; do
fresh)
newdb
[[ -n "${HISTORY_RESET}" ]] && $(printf "${HISTORY_RESET}" "${SELF}") || true
[[ -n "${HISTORY_PUT}" ]] && stellar-core $CONFIG_OPTION --newhist "${SELF}"
[[ -n "${HISTORY_PUT}" ]] && stellar-core $CONFIG_OPTION new-hist "${SELF}"
;;
newhist)
[[ -n "${HISTORY_RESET}" ]] && $(printf "${HISTORY_RESET}" "${SELF}") || true
[[ -n "${HISTORY_PUT}" ]] && stellar-core $CONFIG_OPTION --newhist "${SELF}"
[[ -n "${HISTORY_PUT}" ]] && stellar-core $CONFIG_OPTION new-hist "${SELF}"
;;
forcescp)
stellar-core $CONFIG_OPTION --forcescp
stellar-core $CONFIG_OPTION force-scp
;;
catchupcomplete)
stellar-core $CONFIG_OPTION --catchup-complete
stellar-core $CONFIG_OPTION catchup current/max
;;
catchuprange)
FROM=$1
Expand All @@ -93,11 +93,12 @@ while [[ -n "$1" ]]; do
shift
if [ "${FROM}" -eq "${FROM}" -a "${TO}" -eq "${TO}" ]; then
OUTPUT=$1
COUNT=$((TO-FROM+1))
if [[ "${OUTPUT}" ]]; then
stellar-core $CONFIG_OPTION --catchup-at $FROM --catchup-to $TO --output-file "${OUTPUT}"
stellar-core $CONFIG_OPTION catchup $TO/$COUNT --output-file "${OUTPUT}"
shift
else
stellar-core $CONFIG_OPTION --catchup-at $FROM --catchup-to $TO
stellar-core $CONFIG_OPTION catchup $TO/$COUNT
fi
else
echo "Valid ledger range required" >&2
Expand All @@ -110,10 +111,10 @@ while [[ -n "$1" ]]; do
if [[ "${AT}" == "current" || "${AT}" -eq "${AT}" ]]; then
OUTPUT=$1
if [[ "${OUTPUT}" ]]; then
stellar-core $CONFIG_OPTION --catchup-at $AT --output-file "${OUTPUT}"
stellar-core $CONFIG_OPTION catchup $AT/0 --output-file "${OUTPUT}"
shift
else
stellar-core $CONFIG_OPTION --catchup-at $AT
stellar-core $CONFIG_OPTION catchup $AT/0
fi
else
echo "Valid ledger required" >&2
Expand All @@ -126,10 +127,10 @@ while [[ -n "$1" ]]; do
if [[ "${TO}" == "current" || "${TO}" -eq "${TO}" ]]; then
OUTPUT=$1
if [[ "${OUTPUT}" ]]; then
stellar-core $CONFIG_OPTION --catchup-to $TO --output-file "${OUTPUT}"
stellar-core $CONFIG_OPTION catchup $TO/max --output-file "${OUTPUT}"
shift
else
stellar-core $CONFIG_OPTION --catchup-to $TO
stellar-core $CONFIG_OPTION catchup $TO/max
fi
else
echo "Valid ledger required" >&2
Expand All @@ -139,10 +140,10 @@ while [[ -n "$1" ]]; do
lasthistorycheckpoint)
OUTPUT=$1
if [[ "${OUTPUT}" ]]; then
stellar-core $CONFIG_OPTION --report-last-history-checkpoint --output-file "${OUTPUT}"
stellar-core $CONFIG_OPTION report-last-history-checkpoint --output-file "${OUTPUT}"
shift
else
stellar-core $CONFIG_OPTION --report-last-history-checkpoint
stellar-core $CONFIG_OPTION report-last-history-checkpoint
fi
SKIP_START=true
;;
Expand All @@ -156,7 +157,7 @@ while [[ -n "$1" ]]; do
done

if [[ -z "${SKIP_START}" ]]; then
exec /init -- stellar-core $CONFIG_OPTION
exec /init -- stellar-core $CONFIG_OPTION run
else
echo "Setup complete. Skipping server start."
fi

0 comments on commit 2070b3c

Please sign in to comment.