home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ntfs-3g.postinst < prev    next >
Encoding:
Text File  |  2007-04-10  |  321 b   |  14 lines

  1. #!/bin/sh
  2.  
  3. # Source debconf library.
  4. . /usr/share/debconf/confmodule
  5.  
  6. # Set ntfs-3g binary suid root with group fuse
  7. echo -n "Setting ntfs-3g suid root with group fuse..."
  8. chown root:fuse /usr/bin/ntfs-3g || true
  9. chmod 4750 /usr/bin/ntfs-3g || true
  10. echo "done"
  11. echo "Users from 'fuse' group can now mount NTFS volume."
  12.  
  13.  
  14.