Displaying 3 results from an estimated 3 matches for "stop_".
Did you mean:
stop
2013 Apr 11
2
Disable A Windows Service Only If It Exists
I am wondering whether it is possible to have Puppet only stop and disable
a Windows service if it exists. I have Puppet master 3.1.1 on CentOS, and
Puppet clients 3.1.1 on many Windows machines. Right now, I have the bit
below for certain nodes:
service { "CVSNT":
ensure => ''stopped'',
enable => ''false'',
}
Some of the nodes have this
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
To avoid possibly invoking similarly named executables, all start, stop
and reload methods in the sysvinit scripts have been renamed to
start_/stop_/reload_[script name].
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
scripts/ovirt | 17 +++++++++++------
scripts/ovirt-awake | 20 +++++++++++++++++++-
scripts/ovirt-early | 16 ++++++++++------
scripts/ovirt-firstboot | 28 ++++++++++++++++++--------...
2011 Apr 20
3
[test message] Can R replicate this data manipulation in SAS?
...ides whether that constitutes
HAART or not.
To me, this is a pretty tricky data manipulation in SAS. Is there
any way to get the equivalent result in R?
Thanks,
Paul
**** SAS syntax for coding HAART in HIV patients;
**** Read in test data;
data haart;
input id book_class $ start_date :mmddyy. stop_date :mmddyy.;
format start_date stop_date mmddyy8.;
cards;
1004 NRTI 07/24/95 01/05/99
1004 NRTI 11/20/95 12/10/95
1004 NRTI 01/10/96 01/05/99
1004 PI 05/09/96 11/16/97
1004 NRTI 06/01/96 02/01/97
1004 NRTI 07/01/96 03/01/97
9999 PI 01/02/03 .
9999 NNRTI 04/05/06 07/08/09
;
run;
proc pr...