Changed the install procedure from a "custom" .tgz file to a real .txz package.

This commit is contained in:
Fabian Schlenz 2020-08-12 06:37:27 +02:00
parent 77975aadbc
commit c1bce8a41c
2 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
VERSION=`xpath -q -e 'string(//PLUGIN/@version)' zabbix_agent.plg`
FILE="zabbix_agent-$VERSION.package.tgz"
FILE="zabbix_agent-$VERSION-x86_64-1.txz"
echo "Version in plugin file: $VERSION"
echo "Generated file will be: $FILE"
@ -29,7 +29,7 @@ read
echo "Creating $FILE..."
echo
tar -czvf "$FILE" files
tar -cv --owner=root --group=root --lzma -C files -f "$FILE" .
echo
read md5 _ < <(md5sum "$FILE")
echo "MD5 of the resulting file for the plugin file: $md5"

View File

@ -7,7 +7,7 @@
<!ENTITY baseURL "https://git.schle.nz/fabian/unraid-zabbix_agent/raw/branch/main">
<!ENTITY pluginURL "&baseURL;/zabbix_agent.plg">
<!ENTITY version "2020.08.11">
<!ENTITY packageName "zabbix_agent-&version;.package.tgz">
<!ENTITY packageName "zabbix_agent-&version;-x86_64-1.txz">
<!ENTITY packageURL "&baseURL;/&packageName;">
<!ENTITY packageMD5 "dcf2e2bef5f4f88876ac52ed5ca1046c">
]>
@ -55,8 +55,9 @@ if [ -x /etc/rc.d/rc.zabbix_agentd ]; then
fi
echo "Extracting support files..."
tar -xzvf /boot/config/plugins/zabbix_agent/&packageName; --strip=1 -C /
upgradepkg --install-new /boot/config/plugins/zabbix_agent/&packageName;
echo "Starting zabbix_agent..."
/etc/rc.d/rc.zabbix_agentd start
</INLINE></FILE>
@ -67,14 +68,13 @@ tar -xzvf /boot/config/plugins/zabbix_agent/&packageName; --strip=1 -C /
echo "Removal of zabbix_agent plugin started."
echo "Stopping zabbix_agentd..."
/etc/rc.d/rc.zabbix_agentd stop
echo "Deleting /usr/sbin/zabbix_agentd..."
rm /usr/sbin/zabbix_agentd
echo "Deleting /etc/rc.d/rc.zabbix_agentd..."
rm /etc/rc.d/rc.zabbix_agentd
echo "Deleting /boot/config/plugins/zabbix_agent/..."
rm -rf /boot/config/plugins/zabbix_agent/
echo "Deleting /usr/local/emhttp/plugins/zabbix_agent/..."
rm -rf /usr/local/emhttp/plugins/zabbix_agent/
echo "Uninstalling package..."
removepkg zabbix_agent
echo "Removing remaining plugin files..."
rm -rf /boot/config/plugins/zabbix_agent
echo "Removal of zabbix_agent plugin completed."
</INLINE></FILE>