summarylogtreecommitdiffstats
path: root/nextcloud-client.install
blob: 7b3ea262c174b3bdf43cb24a2f64a899b58c7e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
post_install() {
  xdg-icon-resource forceupdate --theme hicolor
  systemctl daemon-reload
  echo ================================== Important =================================
  echo Start the nextcloud client daemon with:
  echo systemctl start --user nextcloud-client.service
  echo ==============================================================================
  echo Enable the nextcloud client daemon with:
  echo systemctl enable --user nextcloud-client.service
  echo ==============================================================================
}

post_upgrade() {
  post_install
}

post_remove() {
  post_install
}