use head directly without cat in post-hooks

less is more...
This commit is contained in:
Jaromil 2016-11-18 13:55:48 +01:00
parent fa44f46eba
commit 101b89f0be

2
tomb
View File

@ -1956,7 +1956,7 @@ exec_safe_post_hooks() {
[[ -x $mnt/post-hooks ]] || return
# If the file starts with a shebang, run it.
cat $mnt/post-hooks | head -n1 | grep '^#!\s*/' &> /dev/null
head -n1 $mnt/post-hooks | grep '^#!\s*/'
[[ $? == 0 ]] && {
_success "Post hooks found, executing as user ::1 user name::." $USERNAME
$mnt/post-hooks $act $mnt