source: client/shared/lib/os-probes/mounted/90solaris @ 38788bf

webconsole3
Last change on this file since 38788bf was 1236d17, checked in by jm.bardallo <juanmanuel.bardallo@…>, 7 years ago

añadidos nuevamente los ficheros de opengnsys del branch devel, se habían quitado por error

  • Property mode set to 100644
File size: 385 bytes
Line 
1#!/bin/sh
2# Attempt to check if solaris is installed in this system
3# looking at the /etc/system parameters file and /etc/vfstab.
4
5set -e
6
7. /usr/share/os-prober/common.sh
8
9partition="$1"
10dir="$2"
11type="$3"
12
13if [ -f "$dir/etc/system" ] && [ -f "$dir/etc/vfstab" ]; then
14        label="$(count_next_label Solaris)"
15        result "$partition:Solaris/IA32:$label:chain"
16        exit 0
17else
18        exit 1
19fi
Note: See TracBrowser for help on using the repository browser.