# a23_tools **Repository Path**: Alihq/a23_tools ## Basic Information - **Project Name**: a23_tools - **Description**: install,remove,upgrade,downgrade automatically - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2022-11-30 - **Last Updated**: 2022-12-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### usage bash func_verify.sh ../your_prefix_name_rpm --- #### How to add your rpm functional test in this repo? 1. Touch a new shell script like ethtool.sh in packages directory, then add command line using cmd_run. 2. Chang the func_verify.sh ```bash if [[ $NAME =~ "ethtool" ]] then sh ./ethtool.sh elif [[ $NAME =~ "your_prefix"]] then ....your process logic fi ```