diff options
| author | mishra <none@none> | 2006-09-12 15:12:02 -0700 |
|---|---|---|
| committer | mishra <none@none> | 2006-09-12 15:12:02 -0700 |
| commit | 5b4dc236e7280fc192b049c0987f072ab71e69b6 (patch) | |
| tree | 6d77da5b5400b74fb5c752eb2f5062a8bc3dd2a6 /usr/src/cmd/svc | |
| parent | 1da458186bf37cdb504233b8f280111f06521afb (diff) | |
| download | illumos-joyent-5b4dc236e7280fc192b049c0987f072ab71e69b6.tar.gz | |
6352196 fsck cannot open disk images
6367777 *fsck* svc:/system/filesystem/usr fails to start from milestone 'none'
6367948 new fsck_ufs(1M) has nits when dealing with already mounted file systems
Diffstat (limited to 'usr/src/cmd/svc')
| -rw-r--r-- | usr/src/cmd/svc/shell/fs_include.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr/src/cmd/svc/shell/fs_include.sh b/usr/src/cmd/svc/shell/fs_include.sh index 6771b0d2bb..55f817efd4 100644 --- a/usr/src/cmd/svc/shell/fs_include.sh +++ b/usr/src/cmd/svc/shell/fs_include.sh @@ -3,9 +3,8 @@ # CDDL HEADER START # # The contents of this file are subject to the terms of the -# Common Development and Distribution License, Version 1.0 only -# (the "License"). You may not use this file except in compliance -# with the License. +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. @@ -21,7 +20,7 @@ # CDDL HEADER END # # -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. +# Copyright 2006 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T. @@ -159,6 +158,9 @@ checkfs() { checkmessage "$1" "$2" "$3" return 1 ;; + 33) # already mounted + return 0 + ;; *) # fsck child process killed (+ error code 35) checkmessage2 "$1" "$2" "$3" "$?" |
