blob: 0aa220247eddf02daa190aead3e0e497a4ae750c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
post_install() {
echo 'You need to edit /opt/boardy-server/ServerConfig.json with your phone'\''s SSH info,'
echo 'and then run `systemctl --user enable --now BoardyServer` to start the server!'
}
post_upgrade() {
echo 'Ensure your /opt/boardy-server/ServerConfig.json was not overriden,'
echo 'and then restart the server with `systemctl --user restart BoardyServer`!'
}
|