10 lines
105 B
Bash
Executable File
10 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if test "$script"
|
|
then
|
|
exec $script $*
|
|
else
|
|
exec /etc/xen/scripts/vif-bridge $*
|
|
fi
|
|
|