diff options
author | Johnny Stenback <github@jstenback.com> | 2017-01-23 20:42:11 -0800 |
---|---|---|
committer | mschwager <mschwager@users.noreply.github.com> | 2017-08-18 10:16:11 -0400 |
commit | 594a5250e8b8234ce8163108230cb0c997d3937e (patch) | |
tree | e139160cb31fdec4a258d2b6a6a0fe279d2296c9 /duo_openvpn.pl | |
parent | 57948fb06ae7bac172e9e8a87a877883c0136f0a (diff) | |
download | openvpn-duo-plugin-594a5250e8b8234ce8163108230cb0c997d3937e.tar.gz openvpn-duo-plugin-594a5250e8b8234ce8163108230cb0c997d3937e.zip |
Add missing '!' to the shebang in duo_openvpn.pl
Add missing '!' after initial '#' to make this script run as a perl script instead of be executed by the default interpreter (bash, most often).
Diffstat (limited to 'duo_openvpn.pl')
-rwxr-xr-x | duo_openvpn.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/duo_openvpn.pl b/duo_openvpn.pl index 5ca4e0a..c0de1e0 100755 --- a/duo_openvpn.pl +++ b/duo_openvpn.pl @@ -1,4 +1,4 @@ -#/usr/bin/env perl +#!/usr/bin/env perl use strict; use warnings; |