1
0
forked from ports/contrib

zfswatcher (NEW): ZFS pool monitoring and notification daemon

This commit is contained in:
James Mills 2015-04-01 07:01:59 +10:00
parent bdc020ffc7
commit 05e82911ef
3 changed files with 69 additions and 0 deletions

50
zfswatcher/.footprint Normal file
View File

@ -0,0 +1,50 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/zfs/
-rw-r--r-- root/root etc/zfs/zfswatcher.conf
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/zfswatcher.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/zfswatcher
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/zfswatcher/
drwxr-xr-x root/root usr/share/zfswatcher/www/
drwxr-xr-x root/root usr/share/zfswatcher/www/resources/
drwxr-xr-x root/root usr/share/zfswatcher/www/resources/bootstrap/
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/LICENSE
drwxr-xr-x root/root usr/share/zfswatcher/www/resources/bootstrap/css/
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/css/bootstrap-responsive.css
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/css/bootstrap-responsive.min.css
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/css/bootstrap.css
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/css/bootstrap.min.css
drwxr-xr-x root/root usr/share/zfswatcher/www/resources/bootstrap/js/
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-affix.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-alert.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-button.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-carousel.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-collapse.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-dropdown.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-modal.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-popover.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-scrollspy.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-tab.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-tooltip.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-transition.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap-typeahead.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/bootstrap.min.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/bootstrap/js/jquery.js
-rw-r--r-- root/root usr/share/zfswatcher/www/resources/zfswatcher.css (EMPTY)
drwxr-xr-x root/root usr/share/zfswatcher/www/templates/
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/about.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/dashboard.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/footer.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/header.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/logs.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/statistics.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/status-many.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/status-none.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/status-pool.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/status-single.html
-rw-r--r-- root/root usr/share/zfswatcher/www/templates/usage.html

1
zfswatcher/.md5sum Normal file
View File

@ -0,0 +1 @@
924f80c4bd53cece7caeb00029bec21c zfswatcher-0.03.tar.gz

18
zfswatcher/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: ZFS pool monitoring and notification daemon
# URL: http://zfswatcher.damicon.fi/
# Maintainer: ames Mills, prologic at shortcircuit dot net dot au
#
# Depends on: go
name=zfswatcher
version=0.03
release=1
source=(http://shortcircuit.net.au/~prologic/distfiles/$name-$version.tar.gz)
build() {
cd $name-$version
make GO=$(which go)
make mandir=/usr/man DESTDIR=$PKG install
}