Re: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Steve Holden
> Steve, > > Before you do anything as drastic as a reinstall, check the inode of the > temp file before and after editing. Even though you're using vim, it can > be configured to make backups, and I don't know if the in-place write is > enabled when backup is. If the inode does change, look int

Re: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Igor Pechtchanski
crontab is still unable to edit the file it creates with > the first crontab -e. I even tried adding group write permission to > /var/cron/tabs/sholden, but that did no good either. I'm thinking > "reinstall" here ... > > puzzled-ly y'rs - steve > > > >

Re: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Steve Holden
y'rs - steve > -Original Message- > From: Steve Holden [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 2:48 PM > To: Harig, Mark A.; [EMAIL PROTECTED] > Subject: Re: crontab fails to change crontab file: "no changes made to > crontab" &g

Re: crontab fails to change crontab file: no changes made to crontab

2002-10-10 Thread Steve Holden
gt;; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 3:16 PM Subject: Re: crontab fails to change crontab file: no changes made to crontab This isn't the same problem as reported and "resolved" a few days ago where the editor in question is emacs,

Re: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Igor Pechtchanski
Steve, Which editor are you using? If you are using emacs, check that it overwrites the file in-place (I know vi does). God help you if you're using Notepad. ;-) This problem has come up quite a few times in the recent past, as searching the archives for 'crontab' would have shown you. For exa

Re: crontab fails to change crontab file: no changes made to crontab

2002-10-10 Thread [EMAIL PROTECTED]
ct: Re: crontab fails to change crontab file: "no changes made to crontab" "Harig, Mark A." <[EMAIL PROTECTED]> wrote: > Somehow, the cron.sh script did not get run during your installation. > Here is what it does: > > #!/bin/sh > > set -x > >

RE: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Harig, Mark A.
Is this assumption correct? > -Original Message- > From: Steve Holden [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 2:48 PM > To: Harig, Mark A.; [EMAIL PROTECTED] > Subject: Re: crontab fails to change crontab file: "no changes made to > crontab" &g

Re: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Steve Holden
"Harig, Mark A." <[EMAIL PROTECTED]> wrote: > Somehow, the cron.sh script did not get run during your installation. > Here is what it does: > > #!/bin/sh > > set -x > > if [ ! -d /var/cron ] > then > mkdir -p /var/cron > fi > chmod 1777 /var/cron > > if [ ! -d /var/cron/tabs ] > then > mkdir

RE: crontab fails to change crontab file: "no changes made to crontab"

2002-10-10 Thread Harig, Mark A.
Somehow, the cron.sh script did not get run during your installation. Here is what it does: #!/bin/sh set -x if [ ! -d /var/cron ] then mkdir -p /var/cron fi chmod 1777 /var/cron if [ ! -d /var/cron/tabs ] then mkdir /var/cron/tabs fi chmod 1777 /var/cron/tabs > -Original Message---