mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 19:21:53 +03:00
22 lines
349 B
Bash
22 lines
349 B
Bash
#!/bin/bash
|
|
|
|
export UDEV_TEST=yes
|
|
export SYSFS_PATH=$PWD/sys/
|
|
export UDEV_CONFIG_DIR=$PWD/
|
|
export UDEV_ROOT=$PWD/udev/
|
|
export UDEV_DB=udev.tdb
|
|
export UDEV_CONFIG_FILE=replace_test.config
|
|
export UDEV_PERMISSION_FILE=udev.permissions
|
|
|
|
export DEVPATH=class/tty/ttyUSB0
|
|
export ACTION=add
|
|
|
|
../udev tty
|
|
ls udev
|
|
|
|
export ACTION=remove
|
|
../udev tty
|
|
ls udev
|
|
|
|
|