diff options
author | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:54:12 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:54:12 (GMT) |
commit | 9d7a918dcf618e4594a78814e3c5a0ace1edbcad (patch) | |
tree | 3bceae104f8ccfed9bc1c84b1aea3972ed4eb73f /abs/extra/community | |
parent | 19921178a861f4bb631f6ec05d19fcaebc5836a6 (diff) | |
download | linhes_pkgbuild-9d7a918dcf618e4594a78814e3c5a0ace1edbcad.zip linhes_pkgbuild-9d7a918dcf618e4594a78814e3c5a0ace1edbcad.tar.gz linhes_pkgbuild-9d7a918dcf618e4594a78814e3c5a0ace1edbcad.tar.bz2 |
network-ups-tool: moved to extra from community
Diffstat (limited to 'abs/extra/community')
-rw-r--r-- | abs/extra/community/network-ups-tools/PKGBUILD | 53 | ||||
-rw-r--r-- | abs/extra/community/network-ups-tools/finish.upsd | 16 | ||||
-rw-r--r-- | abs/extra/community/network-ups-tools/nut.install | 21 | ||||
-rw-r--r-- | abs/extra/community/network-ups-tools/run.upsd | 21 |
4 files changed, 0 insertions, 111 deletions
diff --git a/abs/extra/community/network-ups-tools/PKGBUILD b/abs/extra/community/network-ups-tools/PKGBUILD deleted file mode 100644 index 1644c2e..0000000 --- a/abs/extra/community/network-ups-tools/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id: PKGBUILD 12757 2010-03-13 04:22:57Z dgriffiths $ -# Maintainer: Roman Kyrylych <roman@archlinux.org> -# Contributor: Giuseppe Lucarelli <luk@rebelsoft.org> - -pkgname=network-ups-tools -pkgver=2.4.3 -pkgrel=5 -pkgdesc="NUT is a collection of programs for monitoring and administering UPS hardware" -arch=('i686' 'x86_64') -url="http://www.networkupstools.org/" -license=('GPL2') -depends=('openssl' 'hal' 'gd') -makedepends=('libusb') -backup=(etc/ups/{ups.conf,upsd.conf,upsd.users,upsmon.conf,upssched.conf}) -install=nut.install -source=(http://www.networkupstools.org/source/2.4/nut-$pkgver.tar.gz run.upsd finish.upsd) -options=('!emptydirs' '!libtool') - -build() { -cd $srcdir/nut-$pkgver -./configure --with-user=nut \ ---prefix=/usr \ ---datadir=/usr/share/ups \ ---sysconfdir=/etc/ups \ ---with-group=nut \ ---with-hal \ ---with-usb \ ---with-cgi \ ---with-cgipath=/usr/share/webapps/nut \ ---with-htmlpath=/usr/share/webapps/nut \ ---with-udev-dir=/etc/udev || return 1 - - make || return 1 - make DESTDIR=$pkgdir install - #ugly hack because --with-pkgconfig-dir doesn't work - install -D -m644 lib/libupsclient.pc $pkgdir/usr/lib/pkgconfig - - install -D -m644 conf/ups.conf.sample $pkgdir/etc/ups/ups.conf - install -D -m640 conf/upsd.conf.sample $pkgdir/etc/ups/upsd.conf - install -D -m640 conf/upsd.users.sample $pkgdir/etc/ups/upsd.users - install -D -m640 conf/upsmon.conf.sample $pkgdir/etc/ups/upsmon.conf - install -D -m644 conf/upssched.conf.sample $pkgdir/etc/ups/upssched.conf - install -D -m755 ../run.upsd $pkgdir/etc/sv/upsd/run || return 1 - install -D -m755 ../finish.upsd $pkgdir/etc/sv/upsd/finish || return 1 - - # Fix udev rules - sed -i "s|SYSFS|ATTRS|g" $pkgdir/etc/udev/rules.d/52-nut-usbups.rules - install -dm755 ${pkgdir}/lib - mv ${pkgdir}/etc/udev ${pkgdir}/lib -} -md5sums=('6f893b61b07915e7a139324fa3f79121' - 'd7af81650a966660f6fd41f957c66165' - 'd50f13385848a9bb8f8cbc9ee5dd9fd5') diff --git a/abs/extra/community/network-ups-tools/finish.upsd b/abs/extra/community/network-ups-tools/finish.upsd deleted file mode 100644 index 8eb335b..0000000 --- a/abs/extra/community/network-ups-tools/finish.upsd +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/upsd` - stat_runit "Stopping UPSd Daemon" - /usr/bin/upsdrvctl stop &> /dev/null - /usr/sbin/upsmon -c stop &> /dev/null - [ ! -z "$PID" ] && kill $PID &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon upsd - stat_done - fi diff --git a/abs/extra/community/network-ups-tools/nut.install b/abs/extra/community/network-ups-tools/nut.install deleted file mode 100644 index 1e6beee..0000000 --- a/abs/extra/community/network-ups-tools/nut.install +++ /dev/null @@ -1,21 +0,0 @@ -post_install() { - groupadd -g 55 nut &> /dev/null - useradd -u 55 -g nut -G tty -d /var/state/ups -s /bin/false nut >/dev/null 2>&1 - mkdir -p /var/state/ups/ - chmod 0770 /var/state/ups/ - chown root:nut /var/state/ups/ - chown root:nut /etc/ups/upsd.conf /etc/ups/upsd.users /etc/ups/upsmon.conf - echo ">>> Before starting your UPSd daemon, it is imperative" - echo ">>> that you read through and edit where needed these files:" - echo ">>> /etc/ups/{ups.conf,upsd.conf,upsmon.conf,upsd.users}" - echo ">>>" - echo ">>> Then add the the upsd service:" - echo ">>> $ sudo add_service.sh upsd" -} - -pre_remove() { - remove_service.sh upsd - userdel nut >/dev/null 2>&1 - groupdel nut >/dev/null 2>&1 - rm -rf /var/state/ups/ -} diff --git a/abs/extra/community/network-ups-tools/run.upsd b/abs/extra/community/network-ups-tools/run.upsd deleted file mode 100644 index 83be88d..0000000 --- a/abs/extra/community/network-ups-tools/run.upsd +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/upsd` - - stat_runit "Starting UPSd Daemon" - /usr/bin/upsdrvctl start &> /dev/null - [ -z "$PID" ] && /usr/sbin/upsd &>/dev/null - /usr/sbin/upsmon &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon upsd - stat_done - fi - - while [ -n $PID ] ; do - sleep 60 - done |