Browse Source

add: dmx monitor crontab @reboot with netns (root)

micha 3 years ago
parent
commit
a48d2d8aba
3 changed files with 12 additions and 1 deletions
  1. 5 0
      ArtNetProcessor.py
  2. 6 0
      setup_dmx.sh
  3. 1 1
      start.sh

+ 5 - 0
ArtNetProcessor.py

@@ -310,6 +310,8 @@ class Window():
         #print( "LOOP")
         host  = self.sel_host.get()
         univ2 = self.sel_univ.get()
+        #if type(univ2) is list:
+        #    univ2.sort()
 
         self.mode  = self.sel_mode.get()
         if self.mode == "stop":
@@ -440,6 +442,8 @@ class Window():
             lines.insert(0,tmp)
 
             tmp = ""
+            sel_univ_data = self.sel_univ.data
+            #sel_univ_data.sort()
             tmp += " univ:"+ (str(self.sel_univ.data))#.ljust(20," "))
             tmp += " list:"+ (str(self.sel_host.data))#.ljust(20," "))
             lines.insert(0,tmp)
@@ -890,6 +894,7 @@ class Pager(): #scroll thru list
         self.check()
     def get(self):
         self.check()
+        self.data.sort()
         if self.data:
              return self.data[self.index]
 

+ 6 - 0
setup_dmx.sh

@@ -0,0 +1,6 @@
+#!/usr/bin/bash
+
+sudo sh /opt/LibreLight/ASP/netns.sh 25
+sudo ip netns exec blue225 su user -c 'screen -d -m -S DMX sh /opt/LibreLight/ASP/start.sh'
+#screen -r DMX
+#sudo ip netns exec blue224 su user -c 'screen -d -m -S ASP_IN sh /opt/LibreLight/ASP/map14_in_to0.sh'

+ 1 - 1
start.sh

@@ -1,2 +1,2 @@
 netns=$(ip netns identify $$)
-python3 ~/ASP/ArtNetProcessor.py netns=$netns
+python3 /opt/LibreLight/ASP/ArtNetProcessor.py netns=$netns