#!/bin/sh OPENVPN=/usr/sbin/openvpn OPENVPN_INIT=/etc/init.d/openvpn SYSTEMCTL=/bin/systemctl SYSTEMD=/run/systemd/system if [ ! -x $OPENVPN ]; then exit 0 fi if [ -n "$IF_OPENVPN" ]; then for vpn in $IF_OPENVPN; do ## check systemd present if [ -d $SYSTEMD ]; then $SYSTEMCTL --no-block start openvpn@$vpn else $OPENVPN_INIT start $vpn fi done fi
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
ethtool | File | 1.65 KB | 0755 |
|
openssh-server | File | 972 B | 0755 |
|
openvpn | File | 385 B | 0755 |
|
ubuntu-fan | File | 757 B | 0755 |
|
wpasupplicant | File | 4.59 KB | 0755 |
|