aboutsummaryrefslogtreecommitdiffstats
path: root/build/entrypoint
blob: bafb76e999851d39347ea8be469ccfa7feb5cd70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh -e

cmd=${1:-""}

case ${cmd} in
   "mco")
      ./orchestrator
      ;;

   "ncm")
      ./ncm
      ;;

   "dcm")
      ./dcm
      ;;

   "rsync")
      ./rsync
      ;;

   "ovnaction")
      ./ovnaction
      ;;

   "clm")
      ./clm
      ;;

    *)
      echo "invalid command ${cmd}"
      sleep infinity

esac