---
 bin/rpki/upgrade.in | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/bin/rpki/upgrade.in b/bin/rpki/upgrade.in
index 9e93a5c..9084b10 100644
--- a/bin/rpki/upgrade.in
+++ b/bin/rpki/upgrade.in
@@ -52,6 +52,11 @@ show_msgs () {
 }
 
 
+upgrade_from_0_11 () {
+    # nothing to do
+    :
+}
+
 upgrade_from_0_10 () {
     log "Clearing rpki-rtr data before altering schema."
     rpki-rtr-clear -f || fatal "Could not clear rpki-rtr data."
@@ -130,7 +135,7 @@ created. If you want to start sending data to routers 
again, run
 %s-rpki-rtr-update." \
         "@PACKAGE_NAME@"
 
-    return 0
+    upgrade_from_0_11
 }
 
 upgrade_from_0_9 () {
@@ -222,6 +227,10 @@ case "$OLD_VERSION" in
         upgrade_from_0_10 || exit $?
         ;;
 
+    0.11)
+        upgrade_from_0_11 || exit $?
+        ;;
+
     "@PACKAGE_VERSION@")
         usage_fatal "Please specify the version you're upgrading from, not" \
                     "the version you're upgrading to."
-- 
2.4.3


------------------------------------------------------------------------------
_______________________________________________
rpstir-devel mailing list
rpstir-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpstir-devel

Reply via email to