Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 487 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 487 Bytes

vpnc-script-hooks

a collection of vpnc-script hooks, mostly for Linux, maybe wholly for Linux, to remediate or tune certain behaviors. generally these operate by providing alternate sh functions.

INSTALL

carefully examine each hook and create a symbolic link to the corresponding directory under /etc/vpnc.

INSTALL ALL

find *.d -type f | while read f; do
  ln -s $PWD/$f /etc/vpnc/$f
done