0355caf20b
Why I did: In case of multi-asic platforms gbsyncd is not getting added to Feature Table of Host Config DB. Without this container_checker complains of not needed gbsyncd container's are running. How I did: Update Both Host and Namespace config db when gbsyncd docker is starting. How I verify: Verified on Multi-asic platforms.
53 lines
1.1 KiB
Bash
Executable File
53 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
. /usr/local/bin/syncd_common.sh
|
|
|
|
function startplatform() {
|
|
|
|
declare -a DbCliArray=($SONIC_DB_CLI $SONIC_DB_NS_CLI)
|
|
for DB_CLI in ${DbCliArray[@]}; do
|
|
# Add gbsyncd to FEATURE table, if not in. It did have same config as syncd.
|
|
if [ -z $($DB_CLI CONFIG_DB HGET 'FEATURE|gbsyncd' state) ]; then
|
|
local CMD="local r=redis.call('DUMP', KEYS[1]); redis.call('RESTORE', KEYS[2], 0, r)"
|
|
$DB_CLI CONFIG_DB EVAL "$CMD" 2 'FEATURE|syncd' 'FEATURE|gbsyncd'
|
|
fi
|
|
done
|
|
}
|
|
|
|
function waitplatform() {
|
|
:
|
|
}
|
|
|
|
function stopplatform1() {
|
|
:
|
|
}
|
|
|
|
function stopplatform2() {
|
|
:
|
|
}
|
|
|
|
OP=$1
|
|
DEV=$2
|
|
|
|
SERVICE="$gbsyncd_platform"
|
|
PEER="swss"
|
|
DEBUGLOG="/tmp/swss-$SERVICE-debug$DEV.log"
|
|
LOCKFILE="/tmp/swss-$SERVICE-lock$DEV"
|
|
NAMESPACE_PREFIX="asic"
|
|
SONIC_DB_CLI="sonic-db-cli"
|
|
SONIC_DB_NS_CLI="sonic-db-cli"
|
|
if [ "$DEV" ]; then
|
|
NET_NS="$NAMESPACE_PREFIX$DEV" #name of the network namespace
|
|
SONIC_DB_NS_CLI="sonic-db-cli -n $NET_NS"
|
|
fi
|
|
|
|
case "$1" in
|
|
start|wait|stop)
|
|
$1
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|wait|stop}"
|
|
exit 1
|
|
;;
|
|
esac
|