xref: /freebsd/sbin/devd/growfs_postboot.conf (revision a259b98fa211ed87bfee58c575de4e2de94ee0fa)
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