/usr/sbin/puppyinstaller chokes when partitions mounted

Please post any bugs you have found
Post Reply
Message
Author
User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

/usr/sbin/puppyinstaller chokes when partitions mounted

#1 Post by Karl Godt »

Again several ways how it can be fixed , I for myself fixed it as
original wrote: ISPUPMNTPT=`mount | grep "^/dev/$2" | tr -s " " | cut -f 3 -d " "`
with

Code: Select all

ISPUPMNTPT=`mount | tac | grep -w -m1 "^/dev/$2" | tr -s " " | cut -f 3 -d " "`
[edit] in the ispupfunc() { [tide]

Post Reply