summarylogtreecommitdiffstats
path: root/webvirt-react-git.install
blob: 463af97b515b7248b4645601ba3080903713f791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

post_install() {
  cat << EOF

By default, webvirt.service runs an instance of nginx on localhost:8080.
This can be modified in the nginx config at /var/lib/webvirt_react/nginx.conf.

To start the website, start webvirt.service and browse to http://localhost:8080.

EOF
}

post_upgrade() {
  post_install $1
}
 
op=$1
shift
 
$op $*