at: Initial commit.

This commit is contained in:
Jose V Beneyto 2007-05-30 16:07:51 +02:00
parent 72f6615b68
commit f8a27e1e27
4 changed files with 78 additions and 0 deletions

32
at/.footprint Normal file
View File

@ -0,0 +1,32 @@
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/sbin/
-rwxr-xr-x root/root usr/sbin/atd
-rwxr-xr-x root/root usr/sbin/atrun
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/at.1.gz
lrwxrwxrwx root/root usr/share/man/man1/atq.1.gz -> at.1.gz
lrwxrwxrwx root/root usr/share/man/man1/atrm.1.gz -> at.1.gz
lrwxrwxrwx root/root usr/share/man/man1/batch.1.gz -> at.1.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/at_allow.5.gz
lrwxrwxrwx root/root usr/share/man/man5/at_deny.5.gz -> at_allow.5.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/atd.8.gz
-rw-r--r-- root/root usr/share/man/man8/atrun.8.gz
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/

2
at/.md5sum Normal file
View File

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

21
at/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: at, batch - queue, examine or delete jobs for later execution
# URL: http://ftp.debian.org/debian/pool/main/a/at/
# Maintainer: Jose V Beneyto, joberui at ei dot upv dot es
# Packager: Jose V Beneyto, joberui at ei dot upv dot es
# Depends on:
name=at
version=3.1.8
release=2
source=(ftp://ftp.debian.org/debian/pool/main/a/${name}/${name}_${version}-11.tar.gz \
atd)
build() {
export PATH=${PATH}:/usr/sbin
cd ${name}-${version}
autoconf
./configure --prefix=/usr
make IROOT=${PKG} install
rm -rf ${PKG}/usr/doc
install -D -m 0755 ${SRC}/atd ${PKG}/etc/rc.d/atd
}

23
at/atd Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# /etc/rc.d/atd: start/stop at daemon
#
case $1 in
start)
/usr/sbin/atd
;;
stop)
killall -q /usr/sbin/atd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file