summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmchooser/init-hooks/40-started-hw-config/run-virt.sh
blob: 7f1ae20d39087efddd620385a919a39b3d1c8532 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (c) 2009 - RZ Uni Freiburg
# Copyright (c) 2009 - OpenSLX GmbH
#
# This program/file is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your feedback to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org
#
# Stage3 part of 'vmchooser' plugin - this script detects additionally to the
# the standard hardware configuration the availability of optical and floppy
# drives for virtual machines.
#
# The script is included from init via the "." load function - thus it has all
# variables and functions available.

waitfor /tmp/hwcfg
( hwinfo --cdrom | grep -i "Device File:" | awk {'print $3'} >/etc/hwinfo.cdrom ) & 
( hwinfo --floppy | grep -i "Device File:" | awk {'print $3'} >/etc/hwinfo.floppy ) &