Use an environment variable file
This commit is contained in:
parent
c9d1bbddc8
commit
bbdb363660
|
@ -49,6 +49,13 @@ The setup script creates a systemd user service that will run `siad` in the
|
|||
background and automatically restart upon failure. The `siad.service` file must
|
||||
be placed in `~/.config/systemd/user/`
|
||||
|
||||
To use the `siad.service`, first fill out `~/.sia/sia.env` environment variables with the
|
||||
correct values. You will need to initialize your wallet if you have not already
|
||||
done so.
|
||||
|
||||
To enable the service: `systemctl --user enable siad.service`
|
||||
|
||||
### Useful Commands
|
||||
To start the service: `systemctl --user start siad`
|
||||
To stop it: `systemctl --user stop siad`
|
||||
To check the status of it: `systemctl --user status siad`
|
||||
|
|
|
@ -113,5 +113,6 @@ if ! shopt -oq posix; then
|
|||
fi
|
||||
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/local/go/bin:/home/user/go/bin
|
||||
|
||||
export SIA_DATA_DIR=/home/user/siad
|
||||
export SIA_API_PASSWORD=$(cat /home/user/.sia/apipassword)
|
||||
set -o allexport
|
||||
source ~/.sia/sia.env
|
||||
set +o allexport
|
||||
|
|
|
@ -67,7 +67,8 @@ yarn build
|
|||
|
||||
# Enable the systemd service
|
||||
cd $cwd
|
||||
mkdir -p $HOME/.config/systemd/user
|
||||
cp siad.service $HOME/.config/systemd/user/siad.service
|
||||
mkdir -p ~/.config/systemd/user
|
||||
cp siad.service ~/.config/systemd/user/siad.service
|
||||
|
||||
systemctl --user enable siad.service
|
||||
mkdir -p ~/.sia
|
||||
cp sia.env ~/.sia/
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
SIA_DATA_DIR=""
|
||||
SIA_API_PASSWORD=""
|
||||
SIA_WALLET_PASSWORD=""
|
|
@ -4,9 +4,7 @@ Description=siad
|
|||
[Service]
|
||||
Type=simple
|
||||
WorkingDirectory=/home/user/siad
|
||||
Environment="SIA_DATA_DIR=/home/user/siad"
|
||||
Environment="SIA_API_PASSWORD=$(cat /home/user/.sia/apipassword)"
|
||||
Environment="SIA_WALLET_PASSWORD=$(cat /home/user/.sia/walletpassword)"
|
||||
EnvironmentFile=/home/user/.sia/sia.env
|
||||
ExecStart=/home/user/go/bin/siad
|
||||
ExecStop=/home/user/go/bin/siac stop
|
||||
Restart=on-failure
|
||||
|
|
Reference in New Issue