summaryrefslogtreecommitdiff
path: root/community/syncthing/syncthing.install
blob: 3718a472280525b4e0f6b10b625a198e076ce297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_install() {
cat << EOF
  WebGUI can be accessed at http://localhost:8080

  Execute the following to reload systemd modules.

    systemctl daemon-reload

  To start and/or enable syncthing execute the the following,
  replacing 'user' with your username.

    systemctl start syncthing@user
    systemctl enable syncthing@user

EOF
}

post_upgrade() {
    post_install
}