summaryrefslogtreecommitdiffstats
path: root/tasks/update_chrootscripts.task.sh
blob: 9302faeb3fd02b2891b6acdde58d09d3ada89b2b (plain) (blame)
1
2
3
4
5
6
7
update_chrootscripts () {
  rm -f $BROOT_BUILDROOT_PATH/root/bin/*.sh 2>&1 > /dev/null
  cp ./chroot-scripts/* $BROOT_BUILDROOT_PATH/root/bin/
  chmod 700 $BROOT_BUILDROOT_PATH/root/bin/*
  count=$(ls -1 $BROOT_BUILDROOT_PATH/root/bin/*.sh|wc -l)
  echo "  Reinstalled $count scripts"
}