summaryrefslogtreecommitdiff
path: root/community/busybox/busybox.install
blob: 233b70799c423b7a9b2daaa9364a6e9a9fe05d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
  echo "You may want to do setuid on /bin/busybox"
  echo "  chmod 4555 /bin/busybox"
}

pre_upgrade() {
  stat -c %a /bin/busybox >tmp/busybox.upgrade.script
}

post_upgrade() {
  [ -f tmp/busybox.upgrade.script ] && chmod `cat tmp/busybox.upgrade.script` /bin/busybox
  rm -f tmp/busybox.upgrade.script
}