commit 05e82911eff63a587c86623f5f0376871047c325 Author: James Mills <prologic@shortcircuit.net.au> Date: Wed Apr 1 07:01:59 2015 +1000 zfswatcher (NEW): ZFS pool monitoring and notification daemon diff --git a/zfswatcher/.footprint b/zfswatcher/.footprint new file mode 100644 index 0000000..b73fefe --- /dev/null +++ b/zfswatcher/.footprint @@ -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 diff --git a/zfswatcher/.md5sum b/zfswatcher/.md5sum new file mode 100644 index 0000000..7140ab6 --- /dev/null +++ b/zfswatcher/.md5sum @@ -0,0 +1 @@ +924f80c4bd53cece7caeb00029bec21c zfswatcher-0.03.tar.gz diff --git a/zfswatcher/Pkgfile b/zfswatcher/Pkgfile new file mode 100644 index 0000000..4860cba --- /dev/null +++ b/zfswatcher/Pkgfile @@ -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 +}