Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
titleContent
function freenas_setAllowedIPs ($pid) {
    return array ( 
				   'nfs' => array ('1.2.3.4'),
                   'cifs' => array('1.2.3.4'),
                   'iscsi' => 'ALL',
                 );
}

...