Changeset 981
- Timestamp:
- Mar 29, 2016, 5:12:22 PM (5 years ago)
- Location:
- llx-network-config/trunk/fuentes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
llx-network-config/trunk/fuentes/debian/changelog
r768 r981 1 llx-network-config (0.7) xenial; urgency=medium 2 3 * First release to xenial 4 * Change disable an restart service to system.d 5 6 -- Juan Ramon Pelegrina <juapesai@hotmail.com> Tue, 29 Mar 2016 17:09:17 +0200 7 1 8 llx-network-config (0.4) trusty; urgency=medium 2 9 -
llx-network-config/trunk/fuentes/debian/control
r768 r981 9 9 Package: llx-network-config 10 10 Architecture: all 11 Depends: ${misc:Depends}, zero-server-wizard , n4d, python, python-support (>= 0.90)11 Depends: ${misc:Depends}, zero-server-wizard , n4d, python, llxcfg-runtime 12 12 Description: Lliurex Network Configuration 13 13 Gui to allow to edit network configuration after -
llx-network-config/trunk/fuentes/install-files/usr/share/llx-network-config/llx-network-config.py
r768 r981 12 12 import lliurex.net 13 13 import traceback 14 14 import gi 15 gi.require_version('Gtk','3.0') 16 gi.require_version('PangoCairo','1.0') 15 17 16 18 from gi.repository import Gtk, Gdk, GObject, GLib, PangoCairo, Pango … … 329 331 msg="* Restarting services ... " 330 332 sys.stdout.write(msg) 331 os.system("/usr/sbin/upstart-manager disable network-manager") 332 os.system("stop network-manager") 333 os.system("/etc/init.d/networking restart") 334 os.system("/etc/init.d/dnsmasq restart") 335 os.system("sudo service squid3 restart") 336 os.system("sudo service n4d restart") 333 #os.system("/usr/sbin/upstart-manager disable network-manager") 334 #os.system("stop network-manager") 335 os.system("systemctl stop NetworkManager.service") 336 os.system("systemctl mask NetworkManager.service") 337 #os.system("/etc/init.d/networking restart") 338 os.system("systemctl restart networking.service") 339 #os.system("/etc/init.d/dnsmasq restart") 340 os.system("systemctl restart dnsmasq.service") 341 #os.system("sudo service squid3 restart") 342 os.system("systemctl restart squid3.service") 343 #os.system("sudo service n4d restart") 344 os.system("systemctl restart n4d.service") 337 345 print("OK") 338 346 print("")
Note: See TracChangeset
for help on using the changeset viewer.