a17eb556d9
* Use bash as shebang for scripts as well as CenOS/RHEL network scripts use * Change *if* conditions according to bash * Move files that are not templates to files folder * Add chmod for pre-up config files * Remove jacks for l23_stored_config ovs2lnx patch as it is not used Change-Id: I78f31000e57fb9bfeecad2ba9a7f343967e68f9c Partial-bug: #1522481
4 lines
103 B
Bash
4 lines
103 B
Bash
#!/bin/bash
|
|
SCRIPT="/etc/sysconfig/network-scripts/interface-up-script-$1"
|
|
[ -x $SCRIPT ] && . $SCRIPT
|