7 lines
118 B
Bash
Executable File
7 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
POSTUPNAME="/etc/sysconfig/network-scripts/post-up-$1"
|
|
if [ -x $POSTUPNAME ]; then
|
|
exec $POSTUPNAME
|
|
fi
|