Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
vpnunlimited can't connect
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
polslinux
Apprentice
Apprentice


Joined: 12 Apr 2010
Posts: 253
Location: Veneto

PostPosted: Mon Oct 06, 2014 10:06 am    Post subject: vpnunlimited can't connect Reply with quote

I just downloaded the 64bit deb of VPN Unlimited from their site but I cannot connect to any server.
I checked with ldd and no library is missing.
Both the daemon and the main sofware starts withouth problems and the only warning I'm getting running them from terminal is:
Code:
vpn-unlimited-daemon: /usr/lib64/libssl.so.1.0.0: no version information available (required by /usr/lib64/libvpnu_enc.so.1)


Any hints?

PS: gentoo ~amd64
Back to top
View user's profile Send private message
polslinux
Apprentice
Apprentice


Joined: 12 Apr 2010
Posts: 253
Location: Veneto

PostPosted: Mon Oct 06, 2014 11:49 am    Post subject: Reply with quote

I need to convert the following code to a systemd service file, can anyone help me? Thanks :D

Code:
#!/bin/sh

# /etc/init.d/vpn-unlimited-daemon

### BEGIN INIT INFO
# Provides:          vpn-unlimited-daemon
# Required-Start:    $network $remote_fs $syslog
# Required-Stop:     $network $remote_fs $syslog
# Should-Start:      network-manager
# Should-Stop:       network-manager
# X-Start-Before:    $x-display-manager gdm kdm xdm wdm ldm sdm nodm
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Raise VPNUnlimited service daemon
# Description:       Raise VPNUnlimited service daemon
### END INIT INFO

. /lib/lsb/init-functions

[ -f /etc/default/rcS ] && . /etc/default/rcS
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PROGRAM=/usr/bin/vpn-unlimited-daemon

test -x $PROGRAM || exit 0

case "$1" in
  start)
    log_begin_msg "Start VPNUnlimited daemon"
    start-stop-daemon -Sbvx $PROGRAM
    log_end_msg 0
    ;;
  stop)
    log_begin_msg "Stop VPNUnlimited daemon"
    start-stop-daemon -Kvx $PROGRAM
    log_end_msg 0
    ;;
  force-reload|restart)
    $0 stop
    $0 start
    ;;
  status)
    if test -z `pidof $PROGRAM` ; then
        log_failure_msg "VPNUnlimited daemon is not running"
    else
        port=`cat /var/run/vpn_unlimited_service`
        log_success_msg "VPNUnlimited daemon run on $port port"
    fi
    exit 0
    ;;
  *)
    log_success_msg "Usage: $PROGRAM {start|stop|restart|force-reload|status}"
    exit 1
esac

exit 0
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum