While trying to browse and upload the custom plug-in SCCTest.zip, the following error occurs:
There are some problems with the Plugin_Descriptor.xml file of plug-in package 'SCCTest' : Plugin_descriptor xml is missing from the plug-in zip file.
The SCCTest is the Native Type Custom plug-in created by referring the official documentation given below:
https://library.netapp.com/ecm/ecm_download_file/ECMLP2874315
All the naming conditions and the files placement within the folder for the Native type had been satisfied. I have also attached the xml file as text file and .sh file as given below for your reference.
Can anyone help with this?
SCCTest.sh
#!/bin/bash
# SCCTest script for SCC Class
#
echo "SCC_Test#INFO#Version 1.0 SCCTest.sh - Script is running"
case "$1" in
"-quiesce" )
echo "SCCTest#INFO#Quiescing"
echo "The quiesce doesn't do anything but write these messages to the logs"
exit 0
;;
"-unquiesce" )
echo "SCCTest#INFO#Unquiescing"
echo "the unquiesce doesn't do anything but write these messages to the logs"
exit 0
;;
* )
echo "SCCTest#WARN#Not Implemented";
exit 99
;;
esac