-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.sh
executable file
·82 lines (73 loc) · 2.39 KB
/
init.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/bash
# Absolute path to this script. /home/user/bin/foo.sh
SCRIPT=$(readlink -f $0)
# Absolute path this script is in. /home/user/bin
export SCRIPT_PATH=`dirname $SCRIPT`
cd ${SCRIPT_PATH}
mkdir -p remote-repos
mkdir -p backups
cd remote-repos
echo ""
echo "Initializing download of ProtonVPN repositories..."
echo "Please wait, this could be a while..."
echo ""
git clone https://github.com/ProtonVPN/ios-mac-app
sleep 30
git clone https://github.com/ProtonVPN/wireguard-go
sleep 30
git clone https://github.com/ProtonVPN/wireguard-android
sleep 30
git clone https://github.com/ProtonVPN/win-app
sleep 30
git clone https://github.com/ProtonVPN/proton-vpn-gtk-app
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-network-manager
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-api-core
sleep 30
git clone https://github.com/ProtonVPN/local-agent-rs
sleep 30
git clone https://github.com/ProtonVPN/proton-vpn-browser-extension
sleep 30
git clone https://github.com/ProtonVPN/python-proton-core
sleep 30
git clone https://github.com/ProtonVPN/python-proton-keyring-linux
sleep 30
git clone https://github.com/ProtonVPN/android-app
sleep 30
git clone https://github.com/ProtonVPN/wireguard-apple
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-logger
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-killswitch-network-manager-wireguard
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-killswitch-network-manager
sleep 30
git clone https://github.com/ProtonVPN/python-proton-keyring-linux-secretservice
sleep 30
git clone https://github.com/ProtonVPN/go-vpn-lib
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-network-manager-openvpn
sleep 30
git clone https://github.com/ProtonVPN/python-proton-vpn-network-manager-wireguard
sleep 30
git clone https://github.com/ProtonVPN/.github dot-github
sleep 30
git clone https://github.com/ProtonVPN/proton-vpn-settings
sleep 30
git clone https://github.com/ProtonVPN/ios-app
sleep 30
git clone https://github.com/ProtonVPN/mac-app
sleep 30
git clone https://github.com/ProtonVPN/vpncore
sleep 30
git clone https://github.com/ProtonVPN/win-openvpn
sleep 30
git clone https://github.com/ProtonVPN/win-tap-adapter
sleep 30
git clone https://github.com/ProtonVPN/protonvpn-cli
sleep 30
git clone https://github.com/ProtonVPN/scripts
echo ""
echo "Completed initial download"
echo ""