summaryrefslogtreecommitdiff
path: root/test/label_test
blob: fb3fa2359fe5394c516fb870adb0d616b53f7267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash

RULES=label_test.rules
CONFIG=label_test.conf

export UDEV_TEST=yes
export SYSFS_PATH=$PWD/sys/
export UDEV_CONFIG_FILE=$PWD/$CONFIG

cat > $RULES << EOF
LABEL, BUS="scsi", vendor="IBM-ESXS", NAME="boot_disk%n"
EOF

cat > $CONFIG << EOF
udev_root="$PWD/udev/"
udev_db="$PWD/udev/.udev.tdb"
udev_rules="$PWD/$RULES"
udev_permissions="$PWD/udev.permissions"
EOF

export ACTION=add
export DEVPATH=block/sda

../udev block
ls -l udev

export DEVPATH=block/sda/sda3

../udev block
ls -l udev

export ACTION=remove
export DEVPATH=block/sda

../udev block
ls -l udev

export DEVPATH=block/sda/sda3

../udev block
ls -l udev


rm $RULES
rm $CONFIG