summaryrefslogtreecommitdiff
path: root/community/busybox/busybox.install
blob: 72a1e98b38dc3ebf60ad927e3cb2c3e1a07275d9 (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
}