mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-14 12:43:13 +02:00
61 lines
No EOL
1.3 KiB
Bash
Executable file
61 lines
No EOL
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
source /home/joinmarket/joinin.conf
|
|
|
|
script="$1"
|
|
wallet="$2"
|
|
|
|
echo ""
|
|
echo "Making sure $script not running"
|
|
echo ""
|
|
sudo systemctl stop $script
|
|
sudo systemctl disable $script
|
|
|
|
if [ $script == "yg-privacyenhanced" ]; then
|
|
rm -f ~/.joinmarket/wallets/$wallet.lock
|
|
pkill -sigint -f "python yg-privacyenhanced.py $wallet --wallet-password-stdin"
|
|
fi
|
|
|
|
if [ ${RPCoverTor} = on ];then
|
|
tor="torify"
|
|
else
|
|
tor=""
|
|
fi
|
|
|
|
startScript="cat /home/joinmarket/.pw | $tor python $script.py $wallet --wallet-password-stdin"
|
|
echo "running: $tor python $script.py $wallet"
|
|
|
|
echo "
|
|
[Unit]
|
|
Description=$script
|
|
|
|
[Service]
|
|
WorkingDirectory=/home/joinmarket/joinmarket-clientserver/scripts/
|
|
ExecStart=/bin/sh -c '. /home/joinmarket/joinmarket-clientserver/jmvenv/bin/activate && $startScript'
|
|
User=joinmarket
|
|
Group=joinmarket
|
|
Type=simple
|
|
KillMode=process
|
|
TimeoutSec=infinity
|
|
Restart=no
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
" | sudo tee /etc/systemd/system/$script.service 1>/dev/null
|
|
|
|
echo ""
|
|
echo "Starting the systemd service: $script"
|
|
echo ""
|
|
|
|
sudo systemctl enable $script
|
|
sudo systemctl start $script
|
|
|
|
echo ""
|
|
echo "Shredding the password once used..."
|
|
echo ""
|
|
|
|
sleep 5
|
|
# delete password once used
|
|
shred -uvz /home/joinmarket/.pw
|
|
# recreate file for systemd
|
|
touch /home/joinmarket/.pw |