This repository was archived by the owner on Jan 16, 2024. It is now read-only.
  
  
  
  
  
Description
service networking start no longer works in Debian 8 after d96cb50. This happens because it disables network confguration in /etc/default/networking:
Network should be configured with ifup, the same as Ubuntu.
  
  
    
        
          |  | activate_network() | 
        
          |  | { | 
        
          |  | . /etc/os-release | 
        
          |  | if [ $ID = "ubuntu" ]; then | 
        
          |  | IFACES=`/sbin/ifquery --list -a` | 
        
          |  |  | 
        
          |  | for i in $IFACES; do | 
        
          |  | /sbin/ifup $i | 
        
          |  | done | 
        
          |  | else | 
        
          |  | service networking stop | 
        
          |  | sleep 1 | 
        
          |  | service networking start | 
        
          |  | fi | 
        
          |  |  | 
        
          |  | sleep 2 | 
        
          |  | } |