1234567891011121314151617181920 |
- #!/bin/bash
- data=( `cat /etc/shadowsocks-libev/akun.conf | grep '^###' | cut -d ' ' -f 2`);
- now=`date +"%Y-%m-%d"`
- for user in "${data[@]}"
- do
- exp=$(grep -w "^### $user" "/etc/shadowsocks-libev/akun.conf" | cut -d ' ' -f 3)
- d1=$(date -d "$exp" +%s)
- d2=$(date -d "$now" +%s)
- exp2=$(( (d1 - d2) / 86400 ))
- if [[ "$exp2" = "0" ]]; then
- sed -i "/^### $user $exp/,/^port_http/d" "/etc/shadowsocks-libev/akun.conf"
- systemctl disable shadowsocks-libev-server@$user-tls.service
- systemctl disable shadowsocks-libev-server@$user-http.service
- systemctl stop shadowsocks-libev-server@$user-tls.service
- systemctl stop shadowsocks-libev-server@$user-http.service
- rm -f "/etc/shadowsocks-libev/$user-tls.json"
- rm -f "/etc/shadowsocks-libev/$user-http.json"
- fi
- done
|