Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. interface=dev0
  4. mycommand="sudo openvpn --config '/etc/openvpn/optionFile.ovpn'"
  5.  
  6. $mycommand
  7.  
  8. Options error: In [CMD-LINE]:1: Error opening configuration file: '/etc/openvpn/optionFile.ovpn'
  9.  
  10. #!/bin/bash
  11.  
  12. interface=dev0
  13. mycommand="sudo openvpn --config /etc/openvpn/optionFile.ovpn"
  14.  
  15. $mycommand
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement