9 lines
335 B
Python
Executable file
9 lines
335 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from config import multicast
|
|
import os
|
|
for (name, value) in multicast['Radio'].items():
|
|
try: os.symlink('/var/www/sound.jpg', '/var/www/images/%s.jpg' % value[1])
|
|
except OSError: pass
|
|
try: os.symlink('/var/www/sound_petites.jpg', '/var/www/images/%s_petites.jpg' % value[1])
|
|
except OSError: pass
|