diff options
Diffstat (limited to 'community/syncthing/syncthing.install')
-rw-r--r-- | community/syncthing/syncthing.install | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/syncthing/syncthing.install b/community/syncthing/syncthing.install new file mode 100644 index 000000000..e400b9ba7 --- /dev/null +++ b/community/syncthing/syncthing.install @@ -0,0 +1,28 @@ +post_install() { +cat << EOF + WebGUI can be accessed at http://localhost:8080 + + Execute + + systemctl daemon-reload + + to reload systemd modules. + + To start syncthing, execute: + + systemctl start syncthing@user + + where 'user' is your username. + + To autostart syncthing on system start, execute + + systemctl enable syncthing@user + + where 'user' is your username. + +EOF +} + +post_upgrade() { + post_install +} |