Skip to content

Commit

Permalink
[platform] Update path to udevprefix.conf file (#6779)
Browse files Browse the repository at this point in the history
sonic-net/sonic-utilities#1431 changes the path to the udevprefix.conf file. The file previously inappropriately resided in the <platform>/plugins/ directory. That directory is reserved for now-deprecated Python platform plugins, and will be removed in the near future.
  • Loading branch information
jleveque authored Feb 14, 2021
1 parent 88961f1 commit c651fbc
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
PREV_REBOOT_CAUSE="/host/reboot-cause/"
DEVICE="/usr/share/sonic/device"
PLATFORM=$(/usr/local/bin/sonic-cfggen -H -v DEVICE_METADATA.localhost.platform)
FILES=$DEVICE/$PLATFORM/plugins
PLATFORM_PATH=$DEVICE/$PLATFORM
FILENAME="udevprefix.conf"

if [ "$1" = "clear" ]
then
if [ -e $FILES/$FILENAME ]; then
rm $FILES/$FILENAME
if [ -e $PLATFORM_PATH/$FILENAME ]; then
rm $PLATFORM_PATH/$FILENAME
fi
else
if [ -e $FILES/$FILENAME ]; then
: > $FILES/$FILENAME
echo -n "$1" > $FILES/$FILENAME
if [ -e $PLATFORM_PATH/$FILENAME ]; then
: > $PLATFORM_PATH/$FILENAME
echo -n "$1" > $PLATFORM_PATH/$FILENAME
else
touch $FILES/$FILENMAE
echo -n "$1" > $FILES/$FILENAME
touch $PLATFORM_PATH/$FILENMAE
echo -n "$1" > $PLATFORM_PATH/$FILENAME
fi
fi

0 comments on commit c651fbc

Please sign in to comment.