or by their IP address. Search is triggered by typing 3 or more characters into the text box, which then returns the first 10 matches. The use of the asterisk wild-card is supported, so you may search for fuzzy matches dynamically. WWW: http://community.zenoss.org/docs/DOC-7453 PR: ports/157505 Submitted by: Zenoss <zenoss@experts-exchange.com>
10 lines
271 B
Bash
10 lines
271 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "DEINSTALL" ]; then
|
|
echo "To de-activate this Zenpack, run the following command as the zenoss user:
|
|
|
|
%%ZENHOME%%/bin/zenpack --remove %%ZPACKPREFIX%%%%PORTNAME%%
|
|
|
|
IMPORTANT: De-activating a Zenpack will also remove all its associated data"
|
|
|
|
fi
|