> On 10/10/2012 6:26 AM, Dietmar Maurer wrote: > >> +# rpm based distros > >> +[ -d /etc/sysconfig ] && \ > >> + [ -f /etc/sysconfig/checkquorum ] && \ > >> + . /etc/sysconfig/checkquorum > >> + > >> +# deb based distros > >> +[ ! -d /etc/sysconfig ] && \ > >> + [ -f /etc/default/checkquorum ] && \ > >> + . /etc/default/checkquorum > >> + > > > > FYI: Some RAID tool vendors delivers utilities for debian which creates > directory '/etc/sysconfig' > > on debian boxes, so that test is not reliable. > > > > > > This might be a controversial argument.
I just though there are better tests to see if you run on debian, for example: [ -f /etc/debian_version && -d /etc/default ]
