at: moved to attic

This commit is contained in:
Tilman Sauerbeck 2006-10-18 17:06:01 +00:00
parent 61df298e42
commit b392490b03
4 changed files with 0 additions and 79 deletions

View File

@ -1,31 +0,0 @@
drwxr-xr-x root/root etc/
-rw------- root/root etc/at.deny
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/atd
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwsr-xr-x root/root usr/bin/at
lrwxrwxrwx root/root usr/bin/atq -> at
lrwxrwxrwx root/root usr/bin/atrm -> at
-rwxr-xr-x root/root usr/bin/batch
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/at.1.gz
lrwxrwxrwx root/root usr/man/man1/atq.1.gz -> at.1.gz
lrwxrwxrwx root/root usr/man/man1/atrm.1.gz -> at.1.gz
lrwxrwxrwx root/root usr/man/man1/batch.1.gz -> at.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/at_allow.5.gz
lrwxrwxrwx root/root usr/man/man5/at_deny.5.gz -> at_allow.5.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/atd.8.gz
-rw-r--r-- root/root usr/man/man8/atrun.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/atd
-rwxr-xr-x root/root usr/sbin/atrun
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/spool/
drwxr-xr-x root/root var/spool/cron/
drwx------ daemon/daemon var/spool/cron/atjobs/
-rw------- daemon/daemon var/spool/cron/atjobs/.SEQ (EMPTY)
drwx------ daemon/daemon var/spool/cron/atspool/

View File

@ -1,2 +0,0 @@
81dbae5162aaa8a398a81424d6631c77 at_3.1.8-11.tar.gz
16b912119fbeb370ccbeba243538d0e8 atd

View File

@ -1,29 +0,0 @@
# Description: With at/atrun one can run commands at a specified time
# URL: N/A
# Maintainer:
# Packager: Olle Gustafsson, ogg at linux dot se
# Depends on: sendmail
name=at
version=3.1.8
release=2
source=(http://ftp.sunet.se/pub/Linux/distributions/gentoo/distfiles/at_3.1.8-11.tar.gz atd)
build() {
mkdir -p $PKG/etc/rc.d
install -m 755 atd $PKG/etc/rc.d/atd
cd $name-$version
./configure --prefix=/usr \
--disable-nls \
--with-jobdir=/var/spool/cron/atjobs/ \
--with-atspool=/var/spool/cron/atspool
make
make IROOT=$PKG install
cd $PKG/usr/man/man1
ln -sf at.1.gz atq.1.gz
ln -sf at.1.gz atrm.1.gz
ln -sf at.1.gz batch.1.gz
cd $PKG/usr/man/man5
ln -sf at_allow.5.gz at_deny.5.gz
rm -rf $PKG/usr/doc
}

17
at/atd
View File

@ -1,17 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/atd: start/stop atd daemon
#
if [ "$1" = "start" ]; then
/usr/sbin/atd
elif [ "$1" = "stop" ]; then
killall -q /usr/sbin/atd
elif [ "$1" = "restart" ]; then
killall -q /usr/sbin/atd
/usr/sbin/atd
else
echo "usage: $0 start|stop|restart"
fi
# End of file