2018-02-06 16:59:15 -06:00
|
|
|
#!/bin/sh -x
|
2017-02-27 15:08:41 -06:00
|
|
|
#
|
|
|
|
# rc.local
|
|
|
|
#
|
|
|
|
# This script is executed at the end of each multiuser runlevel.
|
|
|
|
# Make sure that the script will "exit 0" on success or any other
|
|
|
|
# value on error.
|
|
|
|
#
|
|
|
|
# In order to enable or disable this script just change the execution
|
|
|
|
# bits.
|
|
|
|
#
|
|
|
|
# By default this script does nothing.
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
SONIC_VERSION=$(sonic-cfggen -y /etc/sonic/sonic_version.yml -v build_version)
|
|
|
|
FIRST_BOOT_FILE="/host/image-${SONIC_VERSION}/platform/firsttime"
|
|
|
|
|
2018-03-08 18:42:41 -06:00
|
|
|
# In case the unit is migrating from another NOS, save the logs
|
|
|
|
log_migration() {
|
|
|
|
echo $1 >> /host/migration/migration.log
|
|
|
|
}
|
|
|
|
|
|
|
|
# Import files from another NOS's partition onto SONiC
|
|
|
|
nos_migration_import() {
|
|
|
|
[ -f $1 ] && cp $1 $2 || log_migration "ERROR: $1 not found!"
|
|
|
|
}
|
|
|
|
|
|
|
|
# While migrating form another NOS, we need to preserve the MAC addresses
|
|
|
|
# of eth0 (and eventually switchports).
|
|
|
|
# Update the eth0 mac and also the EEPROM using ethtool so that subsequent
|
|
|
|
# reboots use the NOS's mac.
|
|
|
|
# Input : mgmt_interface.cfg file imported from the previous NOS.
|
|
|
|
update_mgmt_interface_macaddr() {
|
|
|
|
mgmt_config=$1
|
|
|
|
if [ ! -f "$mgmt_config" ]; then
|
|
|
|
log_migration "ERROR : unable update eth0 MAC : $mgmt_config not found!"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Save the previous NOS's mac
|
|
|
|
old_mac=`ip link show eth0 | grep ether | awk '{print $2}'`
|
|
|
|
[ -z "$old_mac" ] && log_migration "Unable to retrieve old mac address !" && return
|
|
|
|
|
|
|
|
# Extract, validate and set the eth0's mac address for the current session
|
|
|
|
new_mac=$(grep "macaddr" $mgmt_config | awk -F'=' '{print $2}')
|
|
|
|
log_migration "Setting eth0 mac as $new_mac."
|
|
|
|
if [ `echo $new_mac | egrep "^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$"` ]; then
|
|
|
|
ip link set eth0 down
|
|
|
|
ip link set eth0 address $new_mac
|
|
|
|
ip link set eth0 up
|
|
|
|
else
|
|
|
|
log_migration "ERROR: mac imported from NOS is invalid : $new_mac !"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get the ethtool magic and offset for changing the mac address in the EEPROM
|
|
|
|
ethtool_magic=$(grep "ethtool_magic" $mgmt_config | awk -F'=' '{print $2}')
|
|
|
|
ethtool_offset=$(grep "ethtool_offset" $mgmt_config | awk -F'=' '{print $2}')
|
|
|
|
if [ -z "$ethtool_magic" ] || [ -z "$ethtool_offset" ]; then
|
|
|
|
log_migration "Unable to retrieve ethtool params ($ethtool_magic,$ethtool_offset)"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
log_migration "eth0 mac in EEPROM before update:"
|
|
|
|
ethtool -e eth0 offset $ethtool_offset length 6 >> /host/migration/migration.log
|
|
|
|
|
|
|
|
# Update the mac address in the EEPROM for subsequent reboots
|
|
|
|
# Write only changed octets
|
|
|
|
for i in 1 2 3 4 5 6; do
|
|
|
|
offset=$(($ethtool_offset+$i-1))
|
|
|
|
old_mac_octet="$(echo $old_mac | cut -d":" -f$i)"
|
|
|
|
new_mac_octet="$(echo $new_mac | cut -d":" -f$i)"
|
|
|
|
|
|
|
|
if [ "$old_mac_octet" != "$new_mac_octet" ]; then
|
|
|
|
ethtool -E eth0 magic $ethtool_magic offset $offset value 0x$new_mac_octet
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
log_migration "ERROR: unable to update eth0 EEPROM!"
|
|
|
|
log_migration "index $i, magic $ethtool_magic offset $offset, value $new_mac_octet"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
log_migration "eth0 mac in EEPROM after update:"
|
|
|
|
ethtool -e eth0 offset $ethtool_offset length 6 >> /host/migration/migration.log
|
|
|
|
|
|
|
|
# Update the 70-persistent-net.rules with the new mac for eth0
|
|
|
|
log_migration "/etc/udev/rules.d/70-persistent-net.rules : replacing $old_mac with $new_mac for eth0"
|
|
|
|
sed -i "/eth0/ s/ATTR{address}==\"$old_mac\"/ATTR{address}==\"$new_mac\"/g" /etc/udev/rules.d/70-persistent-net.rules
|
|
|
|
}
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
firsttime_exit() {
|
|
|
|
rm -rf $FIRST_BOOT_FILE
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Given a string of tuples of the form field=value, extract the value for a field
|
|
|
|
# In : $string, $field
|
|
|
|
# Out: $value
|
|
|
|
value_extract() {
|
|
|
|
set -- $string
|
|
|
|
for x in "$@"; do
|
|
|
|
case "$x" in
|
|
|
|
$field=*)
|
|
|
|
value="${x#$field=}"
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-11-01 17:12:22 -05:00
|
|
|
program_console_speed()
|
|
|
|
{
|
|
|
|
speed=$(cat /proc/cmdline | grep -Eo 'console=ttyS[0-9]+,[0-9]+' | cut -d "," -f2)
|
|
|
|
if [ -z "$speed" ]; then
|
|
|
|
CONSOLE_SPEED=9600
|
|
|
|
else
|
|
|
|
CONSOLE_SPEED=$speed
|
|
|
|
fi
|
|
|
|
|
|
|
|
sed -i "s|\-\-keep\-baud .* %I| $CONSOLE_SPEED %I|g" /lib/systemd/system/serial-getty@.service
|
|
|
|
systemctl daemon-reload
|
|
|
|
}
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
#### Begin Main Body ####
|
|
|
|
|
2019-09-09 16:18:23 -05:00
|
|
|
logger "SONiC version ${SONIC_VERSION} starting up..."
|
|
|
|
|
2017-08-27 22:13:38 -05:00
|
|
|
# If the machine.conf is absent, it indicates that the unit booted
|
|
|
|
# into SONiC from another NOS. Extract the machine.conf from ONIE.
|
|
|
|
if [ ! -e /host/machine.conf ]; then
|
2018-03-08 18:42:41 -06:00
|
|
|
mkdir -p /host/migration
|
|
|
|
|
2017-08-27 22:13:38 -05:00
|
|
|
onie_dev=$(blkid | grep ONIE-BOOT | head -n 1 | awk '{print $1}' | sed -e 's/:.*$//')
|
|
|
|
mkdir -p /mnt/onie-boot
|
|
|
|
mount $onie_dev /mnt/onie-boot
|
|
|
|
onie_grub_cfg=/mnt/onie-boot/onie/grub/grub-machine.cfg
|
|
|
|
|
|
|
|
if [ ! -e $onie_grub_cfg ]; then
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "$onie_grub_cfg not found"
|
2017-08-27 22:13:38 -05:00
|
|
|
else
|
|
|
|
. ./$onie_grub_cfg
|
|
|
|
grep = $onie_grub_cfg | sed -e 's/onie_//' -e 's/=.*$//' | while read var ; do
|
|
|
|
eval val='$'onie_$var
|
|
|
|
echo "onie_${var}=${val}" >> /host/machine.conf
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2018-03-08 18:42:41 -06:00
|
|
|
# Extract the previous NOS's partition that contains the migration artifacts
|
|
|
|
set -- $(cat /proc/cmdline)
|
|
|
|
for x in "$@"; do
|
|
|
|
case "$x" in
|
|
|
|
nos-config-part=*)
|
|
|
|
nos_val="${x#nos-config-part=}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -n "$nos_val" ]; then
|
|
|
|
nos_dev=$(findfs $nos_val)
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
log_migration "ERROR: nos_dev not found. Check grub parameters"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
log_migration "ERROR: nos_val not found. Check grub parameters"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$nos_dev" ]; then
|
|
|
|
# Mount the previous NOS's partition
|
2018-05-16 12:04:17 -05:00
|
|
|
NOS_DIR=/mnt/nos_migration
|
|
|
|
MG_GZFILE=$NOS_DIR/minigraph.xml.gz.base64.txt
|
|
|
|
MG_FILE=$NOS_DIR/minigraph.xml
|
|
|
|
ACL_GZFILE=$NOS_DIR/acl.json.gz.base64.txt
|
|
|
|
ACL_FILE=$NOS_DIR/acl.json
|
|
|
|
SNMP_FILE=$NOS_DIR/snmp.yml
|
|
|
|
mkdir -p $NOS_DIR
|
|
|
|
mount $nos_dev $NOS_DIR
|
2018-03-08 18:42:41 -06:00
|
|
|
mkdir -p /host/fast-reboot
|
|
|
|
|
2018-05-16 12:04:17 -05:00
|
|
|
# decode & unzip minigraph.xml.gz.base64.txt
|
|
|
|
[ -f $MG_GZFILE ] && /usr/bin/base64 -d $MG_GZFILE | /bin/gunzip > $MG_FILE
|
|
|
|
[ -f $ACL_GZFILE ] && /usr/bin/base64 -d $ACL_GZFILE | /bin/gunzip > $ACL_FILE
|
|
|
|
|
2018-03-08 18:42:41 -06:00
|
|
|
# Copy relevant files
|
2018-05-16 12:04:17 -05:00
|
|
|
nos_migration_import $NOS_DIR/mgmt_interface.cfg /host/migration
|
|
|
|
nos_migration_import $MG_FILE /host/migration
|
|
|
|
nos_migration_import $ACL_FILE /host/migration
|
|
|
|
nos_migration_import $SNMP_FILE /host/migration
|
|
|
|
nos_migration_import $NOS_DIR/arp.json /host/fast-reboot
|
|
|
|
nos_migration_import $NOS_DIR/fdb.json /host/fast-reboot
|
|
|
|
nos_migration_import $NOS_DIR/default_routes.json /host/fast-reboot
|
|
|
|
|
|
|
|
umount $NOS_DIR
|
|
|
|
rmdir $NOS_DIR
|
2018-03-08 18:42:41 -06:00
|
|
|
fi
|
|
|
|
|
|
|
|
update_mgmt_interface_macaddr /host/migration/mgmt_interface.cfg
|
|
|
|
|
2017-09-17 13:41:30 -05:00
|
|
|
migration="TRUE"
|
2017-08-27 22:13:38 -05:00
|
|
|
umount /mnt/onie-boot
|
|
|
|
fi
|
|
|
|
|
2017-02-27 15:08:41 -06:00
|
|
|
. /host/machine.conf
|
|
|
|
|
2018-11-01 17:12:22 -05:00
|
|
|
program_console_speed
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
if [ -f $FIRST_BOOT_FILE ]; then
|
2018-06-04 23:06:58 -05:00
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
echo "First boot detected. Performing first boot tasks..."
|
2018-06-04 23:06:58 -05:00
|
|
|
|
2017-03-02 12:10:40 -06:00
|
|
|
if [ -n "$aboot_platform" ]; then
|
2017-03-01 19:05:13 -06:00
|
|
|
platform=$aboot_platform
|
2017-03-02 12:10:40 -06:00
|
|
|
elif [ -n "$onie_platform" ]; then
|
2017-03-01 19:05:13 -06:00
|
|
|
platform=$onie_platform
|
|
|
|
else
|
2018-06-28 07:29:14 -05:00
|
|
|
echo "Unknown SONiC platform"
|
2017-09-17 13:41:30 -05:00
|
|
|
firsttime_exit
|
2017-02-27 15:08:41 -06:00
|
|
|
fi
|
2017-03-01 19:05:13 -06:00
|
|
|
|
2017-06-21 13:02:25 -05:00
|
|
|
# Try to take old configuration saved during installation
|
2018-03-09 19:17:08 -06:00
|
|
|
# and create a flag in /tmp/ to let updategraph service know
|
|
|
|
if [ -d /host/old_config ]; then
|
|
|
|
mv -f /host/old_config /etc/sonic/
|
2018-07-31 14:50:54 -05:00
|
|
|
rm -rf /etc/sonic/old_config/old_config
|
2018-03-09 19:17:08 -06:00
|
|
|
touch /tmp/pending_config_migration
|
2017-06-21 13:02:25 -05:00
|
|
|
elif [ -f /host/minigraph.xml ]; then
|
2018-03-09 19:17:08 -06:00
|
|
|
mkdir -p /etc/sonic/old_config
|
|
|
|
mv /host/minigraph.xml /etc/sonic/old_config/
|
2019-11-06 22:18:31 -06:00
|
|
|
[ -f /host/acl.json ] && mv /host/acl.json /etc/sonic/old_config/
|
|
|
|
[ -f /host/snmp.yml ] && mv /host/snmp.yml /etc/sonic/old_config/
|
2018-03-09 19:17:08 -06:00
|
|
|
touch /tmp/pending_config_migration
|
2018-03-08 18:42:41 -06:00
|
|
|
elif [ -n "$migration" ] && [ -f /host/migration/minigraph.xml ]; then
|
2018-03-09 19:17:08 -06:00
|
|
|
mkdir -p /etc/sonic/old_config
|
|
|
|
mv /host/migration/minigraph.xml /etc/sonic/old_config/
|
2018-05-16 12:04:17 -05:00
|
|
|
[ -f /host/migration/acl.json ] && mv /host/migration/acl.json /etc/sonic/old_config/
|
|
|
|
[ -f /host/migration/snmp.yml ] && mv /host/migration/snmp.yml /etc/sonic/old_config/
|
2018-03-09 19:17:08 -06:00
|
|
|
touch /tmp/pending_config_migration
|
2018-03-23 17:16:54 -05:00
|
|
|
[ -f /etc/sonic/updategraph.conf ] && sed -i -e "s/enabled=false/enabled=true/g" /etc/sonic/updategraph.conf
|
2017-04-26 03:41:18 -05:00
|
|
|
else
|
2018-03-09 19:17:08 -06:00
|
|
|
touch /tmp/pending_config_initialization
|
2018-01-29 10:11:05 -06:00
|
|
|
fi
|
|
|
|
|
2019-09-17 18:51:46 -05:00
|
|
|
# Notify firstboot to Platform, to use it for reboot-cause
|
|
|
|
touch /tmp/notify_firstboot_to_platform
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
if [ -d /host/image-$SONIC_VERSION/platform/$platform ]; then
|
|
|
|
dpkg -i /host/image-$SONIC_VERSION/platform/$platform/*.deb
|
2017-03-01 19:05:13 -06:00
|
|
|
fi
|
|
|
|
|
2019-10-02 15:58:34 -05:00
|
|
|
sync
|
|
|
|
|
2017-09-17 13:41:30 -05:00
|
|
|
# If the unit booted into SONiC from another NOS's grub,
|
|
|
|
# we now install a grub for SONiC.
|
|
|
|
if [ -n "$onie_platform" ] && [ -n "$migration" ]; then
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
grub_bin=$(ls /host/image-$SONIC_VERSION/platform/x86_64-grub/grub-pc-bin*.deb 2> /dev/null)
|
2017-09-17 13:41:30 -05:00
|
|
|
if [ -z "$grub_bin" ]; then
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "Unable to locate grub package !"
|
2017-09-17 13:41:30 -05:00
|
|
|
firsttime_exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
dpkg -i $grub_bin > /dev/null 2>&1
|
|
|
|
if [ $? != 0 ]; then
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "Unable to install grub package !"
|
2017-09-17 13:41:30 -05:00
|
|
|
firsttime_exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Determine the block device to install grub
|
|
|
|
sonic_dev=$(blkid | grep SONiC-OS | head -n 1 | awk '{print $1}' | sed -e 's/[0-9]:.*$//')
|
|
|
|
if [ -z "$sonic_dev" ]; then
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "Unable to determine sonic partition !"
|
2017-09-17 13:41:30 -05:00
|
|
|
firsttime_exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
grub-install --boot-directory=/host --recheck $sonic_dev 2>/dev/null
|
|
|
|
if [ $? != 0 ]; then
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "grub install failed !"
|
2017-09-17 13:41:30 -05:00
|
|
|
firsttime_exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The SONiC "raw" build mode has already generated a proto grub.cfg
|
|
|
|
# as part of the migration. Platform specific constants need to be
|
|
|
|
# retrieved from installer.conf (if present) and assigned.
|
|
|
|
. /usr/share/sonic/device/$platform/installer.conf
|
|
|
|
|
|
|
|
if [ ! -z "$CONSOLE_PORT" ]; then
|
|
|
|
field="\-\-port"
|
|
|
|
string=$(grep $field /host/grub.cfg)
|
|
|
|
value_extract $string $field
|
|
|
|
console_port=$value
|
|
|
|
if [ ! -z "$console_port" ] && [ "$console_port" != "$CONSOLE_PORT" ]; then
|
|
|
|
sed -i -e "s/\-\-port=$console_port/\-\-port=$CONSOLE_PORT/g" /host/grub.cfg
|
|
|
|
fi
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "grub.cfg console port=$console_port & installer.conf CONSOLE_PORT=$CONSOLE_PORT"
|
2017-09-17 13:41:30 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z "$CONSOLE_DEV" ]; then
|
|
|
|
field="console"
|
|
|
|
string=$(grep $field /host/grub.cfg)
|
|
|
|
value_extract $string $field
|
|
|
|
console_dev_name=$(echo $value | sed -e "s/^.*=//" -e "s/,.*//")
|
|
|
|
console_dev="${console_dev_name#ttyS}"
|
|
|
|
if [ "$console_dev" != "$CONSOLE_DEV" ]; then
|
|
|
|
sed -i -e "s/console=ttyS$console_dev/console=ttyS$CONSOLE_DEV/g" /host/grub.cfg
|
|
|
|
fi
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "grub.cfg console dev=$console_dev & installer.conf CONSOLE_DEV=$CONSOLE_DEV"
|
2017-09-17 13:41:30 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z "$VAR_LOG_SIZE" ]; then
|
|
|
|
field="var_log_size"
|
|
|
|
string=$(grep $field /host/grub.cfg)
|
|
|
|
value_extract $string $field
|
|
|
|
var_log_size=$value
|
|
|
|
if [ ! -z "$var_log_size" ] && [ "$var_log_size" != "$VAR_LOG_SIZE" ]; then
|
|
|
|
sed -i -e "s/var_log_size=$var_log_size/var_log_size=$VAR_LOG_SIZE/g" /host/grub.cfg
|
|
|
|
fi
|
2018-03-08 18:42:41 -06:00
|
|
|
log_migration "grub.cfg var_log_size=$var_log_size & installer.conf VAR_LOG_SIZE=$VAR_LOG_SIZE"
|
2017-09-17 13:41:30 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Set the root based on the label
|
|
|
|
sonic_root=$(blkid | grep SONiC-OS | head -n 1 | awk '{print $1}' | sed -e 's/:.*$//')
|
|
|
|
sonic_root=$(echo "$sonic_root" | sed 's/\//\\\//g')
|
|
|
|
sed -i -e "s/%%SONIC_ROOT%%/$sonic_root/g" /host/grub.cfg
|
|
|
|
|
|
|
|
# Add the Diag and ONIE entries
|
|
|
|
mount $onie_dev /mnt/onie-boot
|
|
|
|
. /mnt/onie-boot/onie/grub.d/50_onie_grub >> /host/grub.cfg
|
|
|
|
umount /mnt/onie-boot
|
|
|
|
|
|
|
|
# Initialize the SONiC's grub config
|
|
|
|
mv /host/grub.cfg /host/grub/grub.cfg
|
|
|
|
fi
|
|
|
|
|
2018-06-28 07:29:14 -05:00
|
|
|
firsttime_exit
|
2017-02-27 15:08:41 -06:00
|
|
|
fi
|
|
|
|
|
SONiC Management Framework Release 1.0 (#3488)
* Added sonic-mgmt-framework as submodule / docker
* fix build issues
* update sonic-mgmt-framework submodule branch to master
* Merged changes 70007e6d2ba3a4c0b371cd693ccc63e0a8906e77..00d4fcfed6a759e40d7b92120ea0ee1f08300fc6
00d4fcfed6a759e40d7b92120ea0ee1f08300fc6 Modified environemnt variables
* Changes to build sonic-mgmt-framework docker
* bumped up sonic-mgmt-framework commit-id
* version bump for sonic-mgmt-framework commit-it
* bumped up sonic-mgmt-framework commit-id
* Add python packages to docker
* Build fix for docker with python packages
* added libyang as dependent package
* Allow building images on NFS-mounted clones
Prior to this change, `build_debian.sh` would generate a Debian
filesystem in `./fsroot`. This needs root permissions, and one of the
tests that is performed is whether the user can create a character
special file in the filesystem (using mknod).
On most NFS deployments, `root` is the least privileged user, and cannot
run mknod. Also, attempting to run commands like rm or mv as root would
fail due to permission errors, since the root user gets mapped to an
unprivileged user like `nobody`.
This commit changes the location of the Debian filesystem to `/fsroot`,
which is a tmpfs mount within the slave Docker. The default squashfs,
docker tarball and zip files are also created within /tmp, before being
copied back to /sonic as the regular user.
The side effect of this change is that the contents of `/fsroot` are no
longer available once the slave container exits, however they are
available within the squashfs image.
Signed-off-by: Nirenjan Krishnan <Nirenjan.Krishnan@dell.com>
* bumped up sonc-mgmt-framework commit to include PR #18
* REST Server startup script is enahnced to read the settings from
ConfigDB. Below table provides mapping of db field to command line
argument name.
============================================================
ConfigDB entry key Field name REST Server argument
============================================================
REST_SERVER|default port -port
REST_SERVER|default client_auth -client_auth
REST_SERVER|default log_level -v
DEVICE_METADATA|x509 server_crt -cert
DEVICE_METADATA|x509 server_key -key
DEVICE_METADATA|x509 ca_crt -cacert
============================================================
* Replace src/telemetry as submodule to sonic-telemetry
* Update telemetry commit HEAD
* Update sonic-telemetry commit HEAD
* libyang env path update
* Add libyang dependency to telemetry
* Add scripts to create JSON files for CLI backend
Scripts to create /var/platform/syseeprom and /var/platform/system, which are back-end
files for CLI, for system EEPROM and system information.
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* In startup script, create directory where CLI back-end files live
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* build dependency pkgs added to docker for build failure fix
* Changes to fix build issue for mgmt framework
* Fix exec path issue with telemetry
* s5232[device] PSU detecttion and default led state support
* Processing of first boot in rc.local should not have premature exit
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* docker mount options added for platform, system features
* bumped up sonic-mgmt-framework commit id to pick 23rd July 2019 changes
* Added mount options for telemetry docker to get access for system and platform info.
* Update commit for sonic-utilities
* [dell]: Corrected dport map and renamed config files for S5232F
* Fix telemetry submodule commit
* added support for sonic-cli console
* [Dell S5232F, Z9264F] Harden FPGA driver kernel module
For Dell S5232F and Z9264F platforms, be more strict when checking state
in ISR of FPGA driver, to harden against spurious interrupts.
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* update mgmt-framework submodule to 27th Aug commit.
* remove changes not related to mgmt-framework and sonic-telemetry
* Revert "Replace src/telemetry as submodule to sonic-telemetry"
This reverts commit 11c31929759a17122782d4944066a6ac8453b78d.
* Revert "Replace src/telemetry as submodule to sonic-telemetry"
This reverts commit 11c31929759a17122782d4944066a6ac8453b78d.
* make submodule changes and remove a change not related to PR
* more changes
* Update .gitmodules
* Update Dockerfile.j2
* Update .gitmodules
* Update .gitmodules
* Update .gitmodules
reverting experimental change
* Removed syspoll for release_1.0
Signed-off-by: Jeff Yin <29264773+jeff-yin@users.noreply.github.com>
* Update docker-sonic-mgmt-framework.mk
* Update sonic-mgmt-framework.mk
* Update sonic-mgmt-framework.mk
* Update docker-sonic-mgmt-framework.mk
* Update docker-sonic-mgmt-framework.mk
* Revert "Processing of first boot in rc.local should not have premature exit"
This reverts commit e99a91ffc28a0fd13f4ad458719d2511c3665431.
* Remove old telemetry directory
* Update docker-sonic-mgmt-framework.mk
* Resolving merge conflict with Azure
* Reverting the wrong merge
* Use CVL_SCHEMA_PATH instead of changing directory for telemetry startup
* Add missing export
* Add python mmh3 to slave dockerfile
* Remove sonic-mgmt-framework build dep for telemetry, fix dialout startup issues
* Provided flag to disable compiling mgmt-framework
* Update sonic-utilites point latest commit id
* Point sonic-utilities to Azure accepted SHA
* Updating mgmt framework to right sha
* Add sonic-telemetry submodule
* Update the mgmt-framework commit id
Co-authored-by: jghalam <joe.ghalam@gmail.com>
Co-authored-by: Partha Dutta <51353699+dutta-partha@users.noreply.github.com>
Co-authored-by: srideepDell <srideep_devireddy@dell.com>
Co-authored-by: nirenjan <nirenjan@users.noreply.github.com>
Co-authored-by: Sachin Holla <51310506+sachinholla@users.noreply.github.com>
Co-authored-by: Eric Seifert <seiferteric@gmail.com>
Co-authored-by: Howard Persh <hpersh@yahoo.com>
Co-authored-by: Jeff Yin <29264773+jeff-yin@users.noreply.github.com>
Co-authored-by: Arunsundar Kannan <31632515+arunsundark@users.noreply.github.com>
Co-authored-by: rvasanthm <51932293+rvasanthm@users.noreply.github.com>
Co-authored-by: Ashok Daparthi-Dell <Ashok_Daparthi@Dell.com>
Co-authored-by: anand-kumar-subramanian <51383315+anand-kumar-subramanian@users.noreply.github.com>
2019-12-23 23:47:16 -06:00
|
|
|
# Create dir where following scripts put their output files
|
|
|
|
mkdir -p /var/platform
|
|
|
|
|
2017-02-27 15:08:41 -06:00
|
|
|
exit 0
|