# @configure_input@
-# $Id: Makefile.in,v 1.44 2000-11-02 19:12:27 thib Exp $
+# $Id: Makefile.in,v 1.45 2000-11-10 17:35:32 thib Exp $
# The following should not be edited manually (use configure options)
# If you must do it, BEWARE : some of the following is also defined
$(INSTALL) -g root -o root -m 755 -d $(DESTMAN)/man5
$(INSTALL) -g root -o root -m 755 -d $(DESTMAN)/man8
$(INSTALL) -g root -o root -m 755 -d $(DESTDOC)/fcron-$(VERSION)
- $(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 600 -d $(FCRONTABS)
+ $(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 700 -d $(FCRONTABS)
$(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 110 -s fcron $(DESTSBIN)
$(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 4111 -s fcrontab $(DESTBIN)
if test -f $(ETC)/fcron.deny; then chown $(USERNAME):$(GROUPNAME) $(ETC)/fcron.deny ; fi
if test -f $(ETC)/fcron.allow; then chown $(USERNAME):$(GROUPNAME) $(ETC)/fcron.allow ; fi
- (cd script ; ./sysVinit-install "$(INSTALL)" $(DESTSBIN) $(DEBUG))
+# (cd script ; ./sysVinit-install "$(INSTALL)" $(DESTSBIN) $(DEBUG))
# reinstall the fcrontabs
# to do that, the old (if any) version of fcron must not run
# (sysVinit-install normally start the last version)
- for FILE in $(FCRONTABS)/* ; do \
- BASENAME=`basename $$FILE` ; \
- FCRONTAB=`echo "$$BASENAME" | \
- sed "s|.*orig|| ; s|new.*|| ; s|fcrontab.sig|| ; s|rm.*||"` ; \
- ( test ! -z "$$FCRONTAB" && fcrontab -u $$FCRONTAB -z ) \
- || echo -n ""; \
- done
+# for FILE in $(FCRONTABS)/* ; do \
+# BASENAME=`basename $$FILE` ; \
+# FCRONTAB=`echo "$$BASENAME" | \
+# sed "s|.*orig|| ; s|new.*|| ; s|fcrontab.sig|| ; s|rm.*||"` ; \
+# ( test ! -z "$$FCRONTAB" && fcrontab -u $$FCRONTAB -z ) \
+# || echo -n ""; \
+# done
uninstall:
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: conf.c,v 1.28 2000-11-02 19:13:13 thib Exp $ */
+ /* $Id: conf.c,v 1.29 2000-11-10 17:36:26 thib Exp $ */
#include "fcron.h"
else
insert_nextexe(cl);
} else {
- if ( cl->cl_timefreq <= 0 ) {
+ if ( cl->cl_timefreq < 60 ) {
error("Invalid timefreq in '%s': set to 1 day", cl->cl_shell);
cl->cl_timefreq = 3600*24;
}