You are not logged in.
Since the big change initscripts I've been getting this output from LVM2 at shutdown:
3 logical volume(s) in volume group "vg0" unmonitored
I'm running 2 500 GB HDD in RAID 0 (software RAID) with 3 logical volumes. I've checked that all the hooks and etc. are present in the conf files so I don't understand this message? I there sometihng I need to check with my lvm2 setup?
Last edited by fettouhi (2012-08-12 11:49:08)
Offline
This is not a problem, just part of the shutdown process, specifically /etc/rc.shutdown:
# stop monitoring of LVM2 groups before unmounting filesystems
[[ $USELVM = [Yy][Ee][Ss] && -x $(type -P lvm) ]] &&
status "Deactivating monitoring of LVM2 groups" vgchange --monitor nOffline
This is not a problem, just part of the shutdown process, specifically /etc/rc.shutdown:
# stop monitoring of LVM2 groups before unmounting filesystems [[ $USELVM = [Yy][Ee][Ss] && -x $(type -P lvm) ]] && status "Deactivating monitoring of LVM2 groups" vgchange --monitor n
Thanks for the clarification, good to know that. I was getting worried there for a minute.
Offline