blob: a015b39f704b2354679e3e2b933d9e4d3a5801ad (
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 spryCloud client daemon with:
echo systemctl start --user sprycloud-client.service
echo ==============================================================================
echo Enable the spryCloud client daemon with:
echo systemctl enable --user sprycloud-client.service
echo ==============================================================================
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|