aboutsummaryrefslogtreecommitdiffstats
path: root/build/entrypoint
blob: d711f0f69415377b7e8123db548480b3f2ca8cf5 (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
   "orchestrator")
      ./orchestrator
      ;;

   "ncm")
      ./ncm
      ;;

   "dcm")
      ./dcm
      ;;

   "rsync")
      ./rsync
      ;;

   "ovnaction")
      ./ovnaction
      ;;

   "clm")
      ./clm
      ;;

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

esac