summarylogtreecommitdiffstats
path: root/opensonic.install
blob: a977b921743ef3164744166182de68c5520ffe96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

post_install() {
  touch usr/share/opensonic/logfile.txt
  chmod 777 usr/share/opensonic/logfile.txt
}

post_upgrade() {
  post_install
}

pre_remove() {
  rm usr/share/opensonic/logfile.txt
}