blob: 24b2a8e362f10915bb43f9ea333b3e64c89b3282 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo '--------------------------------------------------'
echo 'You *MUST* read and agree to the license stored in'
echo '/usr/share/cewe-monlivrephoto/EULA.txt before'
echo 'you start using it'
echo '--------------------------------------------------'
chmod 775 /usr/share/cewe-monlivrephoto
/bin/true
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
|