Edit

IABSD.fr/src/usr.bin/crontab

Branch :

  • Show log

    Commit

  • Author : millert
    Date : 2015-11-12 21:12:05
    Hash : 88959323
    Message : Use absolute paths in pathnames.h. There is no longer a need to chdir(2) to the cron dir and cron(8) now changes to / via daemon(3). We no longer try to create/chmod the spool directories as they should be set correctly at install time. The setegid(crontab) has been moved to open_socket() so it is closer to the chmod(2) call that needs it. OK deraadt@ tedu@

  • Makefile
  • #	$OpenBSD: Makefile,v 1.8 2015/11/12 21:12:05 millert Exp $
    
    PROG=	crontab
    SRCS=	crontab.c entry.c env.c client.c misc.c
    CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../usr.sbin/cron
    BINGRP =crontab
    BINMODE=2555
    MAN=	crontab.1 crontab.5
    
    .PATH: ${.CURDIR}/../../usr.sbin/cron
    
    .include <bsd.prog.mk>