1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

use spacing consistently to make example shorter and more readable;

improve indentation.
This commit is contained in:
sobrado 2008-11-06 11:19:24 +00:00
parent 6fa5fca922
commit 01cb5e7c07

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: hotplugd.8,v 1.7 2008/11/06 09:16:25 ian Exp $
.\" $OpenBSD: hotplugd.8,v 1.8 2008/11/06 11:19:24 sobrado Exp $
.\"
.\" Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
.\"
@ -98,26 +98,22 @@ DEVNAME=$2
case $DEVCLASS in
2)
# disk devices
disklabel=`/sbin/disklabel $DEVNAME 2\*(Gt&1 | \e
sed -n '/^label: /s/^label: //p'`
sed -n '/^label: /s/^label: //p'`
case $disklabel in
Sony*DSC*)
# Sony DSC camera
mount -o nodev,nosuid /dev/"$DEVNAME"i /mnt/camera
;;
esac
;;
3)
# network devices; use hostname.if if found, else dhclient.
if [ -f /etc/hostname.$DEVNAME ]; then
sh /etc/netstart $DEVNAME
else
/sbin/dhclient $DEVNAME
fi
;;
esac
.Ed