
Get rid of underscores in filenames, use dashes instead. This is first part of cleanup in filenames. "qubes_rpc" still untouched - will be in separate commit.
9 líneas
153 B
Bash
Archivo Ejecutable
9 líneas
153 B
Bash
Archivo Ejecutable
#!/bin/sh
|
|
|
|
DEVID=$[ $MAJOR * 256 + $MINOR ]
|
|
|
|
XS_PATH="device/vbd/$DEVID"
|
|
|
|
# Double check that DEVID is not empty
|
|
[ -n "$DEVID" ] && xenstore-rm $XS_PATH
|