* collector v2.2.3 * collector using debian-stable-slim * dev-image updated to use debian-stable-slim * Upgraded librdkafka to v1.9.2 * Fixed permission problems with postgres * Grafana upgraded to 9.1.7 * psql-app v2.2.2 * postgres updated to use timescaledb-ha:pg14-ts2.8
16 lines
389 B
Bash
Executable File
16 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
# Upgrade script for L3VPN
|
|
#
|
|
# Copyright (c) 2022 Cisco Systems, Inc. and Tim Evens. All rights reserved.
|
|
#
|
|
# Author: Tim Evens <tim@evensweb.com>
|
|
#
|
|
|
|
source /usr/local/openbmp/pg_profile
|
|
|
|
echo "==> Upgrading to 2.2.2 SQL ==================================== "
|
|
psql < /tmp/upgrade/upgrade_2.2.2.sql
|
|
echo "==> Done upgrading to 2.2.2 SQL ================================== "
|
|
|
|
|