diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-06-05 13:34:28 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-06-05 13:34:28 -0300 |
commit | 1c5020a76492707a59fe684bc5294e6a34124e5a (patch) | |
tree | caec817a2a93998537eac45f631fbba8f0b1ead8 /syncthing/syncthing.install | |
parent | 4851a89f8c45e9fa325595adc986226ec8a1ca29 (diff) |
syncthing: torrent based directory synchronization
Diffstat (limited to 'syncthing/syncthing.install')
-rw-r--r-- | syncthing/syncthing.install | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/syncthing/syncthing.install b/syncthing/syncthing.install new file mode 100644 index 000000000..e400b9ba7 --- /dev/null +++ b/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 +} |