Changeset 34 for confman/confman


Ignore:
Timestamp:
03/28/2006 21:22:28 (6 years ago)
Author:
ccowart
Message:

Pesky modules in usage statement anyways. --ccowart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • confman/confman

    r33 r34  
    567567 
    568568function chowner { 
    569         local module=$1 
     569        local owner=$1 
    570570        local file=$2 
    571         local owner=$3 
    572         conf_set_prop $module $file owner $owner 
     571        conf_set_prop $file owner $owner 
    573572} 
    574573 
    575574function chgroup { 
    576         local module=$1 
     575        local group=$1 
    577576        local file=$2 
    578         local group=$3 
    579         conf_set_prop $module $file group $group 
     577        conf_set_prop $file group $group 
    580578} 
    581579 
    582580function chmode { 
    583         local module=$1 
     581        local mode=$1 
    584582        local file=$2 
    585         local mode=$3 
    586         conf_set_prop $module $file mode $mode 
     583        conf_set_prop $file mode $mode 
    587584} 
    588585 
    589586function chcom { 
    590         local module=$1 
     587        local comment="$1" 
    591588        local file=$2 
    592         local comment="$3" 
    593         conf_set_prop $module $file comment "$comment" 
     589        conf_set_prop $file comment "$comment" 
    594590} 
    595591 
Note: See TracChangeset for help on using the changeset viewer.