xref: /freebsd/sbin/devd/growfs_postboot.conf (revision 475a56a8766ce29af53b99c47c145c7348165e6b)
1# Trigger growfs on GEOM size changes.
2
3notify 200 {
4	match "system" "GEOM";
5	match "subsystem" "DEV";
6	match "type" "SIZECHANGE";
7	action "lockf -k /var/run/growfs_postboot.lock service growfs_postboot quietstart $cdev 2>&1 | logger -t growfs_postboot &";
8};
9