Skip to content

Commit

Permalink
Recreating /etc/live/boot in postinst.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-baumann committed Aug 24, 2012
1 parent c4ce703 commit 339243f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions debian/live-boot.postinst
@@ -0,0 +1,22 @@
#!/bin/sh

set -e

case "${1}" in
configure)
mkdir -p /etc/live/boot
;;

abort-upgrade|abort-remove|abort-deconfigure)

;;

*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac

#DEBHELPER#

exit 0

0 comments on commit 339243f

Please sign in to comment.