7 lines
177 B
Python
Executable file
7 lines
177 B
Python
Executable file
#! /usr/bin/env python
|
|
# -*- coding: iso-8859-15 -*-
|
|
|
|
import sys
|
|
sys.path.append('/usr/scripts/gestion')
|
|
from gen_confs.switchs import switch
|
|
switch(sys.argv[1:]).reconfigure()
|