• Skip to sidebar navigation
  • Skip to content

Bitbucket

  • More
    ProjectsRepositories
  • Help
    • Online help
    • Learn Git
    • Welcome to Bitbucket
    • Keyboard shortcuts
  • Log In
Alexander Dahl
  1. Alexander Dahl

buildroot

Public
Actions
  • Clone
  • Compare

Learn more about cloning repositories

You have read-only access

Navigation
  • Source
  • Commits
  • Branches
  • All Branches Graph
  • Forks
  1. Alexander Dahl
  2. buildroot

Source

buildroot/package/openvmtools/S10vmtoolsd
Karoly KaszaKaroly Kasza committed 4288da4bb0f02 Sep 2014
Raw file
Source viewDiff to previous
 
1
#!/bin/sh
2
#
3
# Starts vmtoolsd for openvmtools
4
#
5
​
6
EXEC="/usr/bin/vmtoolsd"
7
ARGS="-b"
8
PID="/var/run/vmtoolsd.pid"
9
​
10
case "$1" in
11
  start)
12
    echo -n "Starting vmtoolsd: "
13
    start-stop-daemon -S -q -x $EXEC -- $ARGS $PID
14
    if [ $? != 0 ]; then
15
      echo "FAILED"
16
      exit 1
17
    else
18
      echo "OK"
19
    fi
20
  ;;
21
  stop)
22
    echo -n "Stopping vmtoolsd: "
23
    start-stop-daemon -K -q -p $PID
24
    echo "OK"
25
  ;;
26
  restart|reload)
27
    $0 stop
28
    $0 start
29
  ;;
30
  *)
31
    echo "Usage: $0 {start|stop|restart}"
32
    exit 1
33
esac
  • Git repository management for enterprise teams powered by Atlassian Bitbucket
  • Atlassian Bitbucket v6.7.2
  • Documentation
  • Request a feature
  • About
  • Contact Atlassian
Atlassian

Everything looks good. We'll let you know here if there's anything you should know about.