diff options
author | Linus Nordberg <linus@nordberg.se> | 2009-06-26 05:03:25 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2009-06-26 05:03:25 +0200 |
commit | 7765d85438a0b681725a5539f1924b189402f41c (patch) | |
tree | fe062e9ca06c1d6278798309bef5adfff2106d92 /src/start-bgpstore.sh | |
parent | 45b772581b6c4e227756ef2e437649a44dcc3e23 (diff) |
* src/data.lisp (new-entries): Store AS-PATH.
* src/start-bgpstore.sh: Fix bug in start args and add default host and port.
Diffstat (limited to 'src/start-bgpstore.sh')
-rwxr-xr-x | src/start-bgpstore.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/start-bgpstore.sh b/src/start-bgpstore.sh index ce40c02..62abee1 100755 --- a/src/start-bgpstore.sh +++ b/src/start-bgpstore.sh @@ -3,6 +3,9 @@ HOST=$1 PORT=$2 +[ -z "$HOST" ] && HOST=victoria.tug.nordu.net +[ -z "$PORT" ] && PORT=50001 + # FIXME: The use-package postmodern should've been taken care of in # package.lisp. @@ -11,4 +14,4 @@ sbcl --no-userinit \ --eval "(asdf:oos 'asdf:load-op 'postmodern)" \ --eval "(use-package 'postmodern)" \ --eval "(require 'bgpstore)" \ - --eval "(start-bgpstore $HOST $PORT)" + --eval "(start-bgpstore \"$HOST\" $PORT)" |