File: open-vm-tools-desktop.postinst

package info (click to toggle)
open-vm-tools 2%3A13.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,312 kB
  • sloc: ansic: 180,399; cpp: 11,437; sh: 2,881; makefile: 2,468; xml: 6
file content (10 lines) | stat: -rw-r--r-- 148 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

# load the fuse module just in case its missing
if ! lsmod | grep -qE '^fuse\s+'; then
    modprobe fuse || true
fi

#DEBHELPER#