diff options
| author | Mike Karels <karels@FreeBSD.org> | 2022-12-26 14:45:17 +0000 |
|---|---|---|
| committer | Mike Karels <karels@FreeBSD.org> | 2022-12-26 14:51:09 +0000 |
| commit | 4c8a257810a69264015e4912e02f8c2c837c792e (patch) | |
| tree | 02a582029b69fcb710dafdd49ba3bbe2919353a7 /libexec | |
| parent | e35cfc606a299ef40767e708362529c370f767f5 (diff) | |
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/rc/rc.d/Makefile | 1 | ||||
| -rwxr-xr-x | libexec/rc/rc.d/growfs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libexec/rc/rc.d/Makefile b/libexec/rc/rc.d/Makefile index e990dea60721..703668ef4dd5 100644 --- a/libexec/rc/rc.d/Makefile +++ b/libexec/rc/rc.d/Makefile @@ -35,6 +35,7 @@ CONFS= DAEMON \ ggated \ gptboot \ growfs \ + growfs_fstab \ hostid \ hostid_save \ hostname \ diff --git a/libexec/rc/rc.d/growfs b/libexec/rc/rc.d/growfs index 3c48a7dca6b2..3c738e24177e 100755 --- a/libexec/rc/rc.d/growfs +++ b/libexec/rc/rc.d/growfs @@ -200,7 +200,7 @@ growfs_start() disksize = size[lvl] if (verbose) print "disksize ", disksize - # Don't add swap on disks under 15 GB (decimal) by default. + # Do not add swap on disks under 15 GB (decimal) by default. if (addswap == 1 && (size[lvl] > 15000000000 || swapsize > 0)) doing_swap = 1 else |
