mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
/dev/vn0b is supposed to be a block device, so don't test(1) whether
it's a plain file. Submitted by: brian@awfulhak.demon.co.uk (Brian Somers)
This commit is contained in:
parent
5bb883669b
commit
e58aa098b4
1 changed files with 2 additions and 2 deletions
4
etc/rc
4
etc/rc
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
# $Id: rc,v 1.103 1996/10/28 08:28:02 joerg Exp $
|
||||
# $Id: rc,v 1.104 1996/11/01 09:45:51 peter Exp $
|
||||
# From: @(#)rc 5.27 (Berkeley) 6/5/91
|
||||
|
||||
# System startup script run by init on autoboot
|
||||
|
|
@ -92,7 +92,7 @@ if [ -f /etc/sysconfig ]; then
|
|||
fi
|
||||
|
||||
# Add additional swapfile, if configured.
|
||||
if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -f /dev/vn0b ]; then
|
||||
if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
|
||||
echo "Adding $swapfile as additional swap."
|
||||
/usr/sbin/vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue