<?php

class ModuleNetworkConfigLinux extends AppModule
{
  function __construct($System)
  {
    parent::__construct($System);
    $this->Name = 'NetworkConfigLinux';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPL';
    $this->Description = 'Network service configuration of Linux server';
    $this->Dependencies = array('NetworkConfig');
  }
  
  function Install()
  {
    parent::Install();
  }
  
  function UnInstall()
  {
    parent::UnInstall();
  }

  function Start()
  {
    parent::Start();
  }
}
