File tree Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- export LC_ALL=C
3
+ export LC_ALL=en_US.UTF-8
4
4
set -e
5
- version=" 0.12.5.0 "
5
+ version=" 0.12.5.1 "
6
6
7
7
echo
8
8
echo " ################################################"
@@ -129,6 +129,21 @@ download_binaries()
129
129
echo " There was a problem downloading the binaries, please try running again the script."
130
130
exit -1
131
131
fi
132
+
133
+ if [ -e $HOME /paccoind ]; then
134
+ rm $HOME /paccoind
135
+ ln -s $INSTALL_DIR /paccoind $HOME /paccoind
136
+ fi
137
+
138
+ if [ -e $HOME /paccoin-cli ]; then
139
+ rm $HOME /paccoin-cli
140
+ ln -s $INSTALL_DIR /paccoin-cli $HOME /paccoin-cli
141
+ fi
142
+
143
+ if [ -e $HOME /paccoin-qt ]; then
144
+ rm $HOME /paccoin-qt
145
+ ln -s $INSTALL_DIR /paccoin-qt $HOME /paccoin-qt
146
+ fi
132
147
}
133
148
134
149
update_sentinel ()
@@ -185,7 +200,7 @@ install_and_run_systemd_service()
185
200
echo " *** Some of the available options: start, stop, restart or status."
186
201
echo " *** Example: 'systemctl status ${PAC_SERVICE_NAME} '"
187
202
echo
188
- systemctl status -n 0 $PAC_SERVICE_NAME
203
+ systemctl status -n 0 --no-pager $PAC_SERVICE_NAME
189
204
echo
190
205
paccoin-cli getinfo
191
206
rm $PAC_SERVICE_NAME
Original file line number Diff line number Diff line change 15
15
fi
16
16
17
17
arch=` uname -m`
18
- version=" 0.12.5.0 "
19
- old_version=" 0.12.3.1 "
18
+ version=" 0.12.5.1 "
19
+ old_version=" 0.12.5.0 "
20
20
base_url=" https://github.com/PACCommunity/PAC/releases/download/v${version} "
21
21
if [ " ${arch} " == " x86_64" ]; then
22
22
tarball_name=" PAC-v${version} -linux-x86_64.tar.gz"
You can’t perform that action at this time.
0 commit comments