View Single Post
Posts: 2,154 | Thanked: 8,464 times | Joined on May 2010
#137
Originally Posted by Saturn View Post
@pali,

For the reaver.db to be created and to store the partial tries it is necessary to create a folder called reaver in /etc.
Could you add in the postinstall script something like the following?
Code:
   if [ ! -d /home/user/.reaver ]; then
      mkdir -p /home/user/.reaver
   fi
   if [ ! -d /etc/reaver ]; then
      ln -s /home/user/.reaver /etc/reaver
   fi
Otherwise from my tests to integrate your package in cleven all work as expected. I think I will release it soon if I don't find anything.

Well done, thanks.
I think that path /home/user/.reaver is cleven specified, so I think it is better to call that script in cleven postinst file.