Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Condor 7.4.4 hibernating with logged in local user
- Date: Wed, 23 Nov 2011 11:49:59 +0100
- From: Lukas Slebodnik <slebodnik@xxxxxxxx>
- Subject: Re: [Condor-users] Condor 7.4.4 hibernating with logged in local user
I tried simplified version of your ShouldHibernate and it works.
ShouldHibernate = $(CPUidle) && (State == "Owner")
You could try to surround HIBERNATE expression with debug() function and
increase log verbosity.
HIBERNATE = debug(ifThenElse( $(ShouldHibernate), $(HibernateState), "NONE" ))
STARTD_DEBUG = D_FULLDEBUG
Regards,
Lukas
On Wed, Nov 23, 2011 at 10:21:37AM +0000, Ian Cottam wrote:
> The ShouldHibernate line below does not seem to be enough to stop our
> Linux/64 PCs sleeping whilst in use by someone (logged in) locally using
> the keyboard/mouse/screen.
>
> HIBERNATE_CHECK_INTERVAL = 30
> TimeToWait = 600
> ShouldHibernate = KeyboardIdle > $(StartIdleTime) && $(CPUidle) &&
> $(StateTimer) > $(TimeToWait) && (State == "Unclaimed" || State == "Owner")
> HibernateState = "RAM"
> HIBERNATE = ifThenElse( $(ShouldHibernate), $(HibernateState), "NONE" )
>
> Any suggestions of what to add to prevent such?
> Thanks
> -Ian
>
> ps: my apologies if someone already replied to this, but I can't find
> my previous email on the subject
> --
> Ian Cottam
> IT Services for Research
> Faculty of Engineering and Physical Sciences
> The University of Manchester
> "The only strategy that is guaranteed to fail is not taking risks." Mark
> Zuckerberg
>
>
>
>
> _______________________________________________
> Condor-users mailing list
> To unsubscribe, send a message to condor-users-request@xxxxxxxxxxx with a
> subject: Unsubscribe
> You can also unsubscribe by visiting
> https://lists.cs.wisc.edu/mailman/listinfo/condor-users
>
> The archives can be found at:
> https://lists.cs.wisc.edu/archive/condor-users/
>