Changeset 1215 in ProjectBuilder


Ignore:
Timestamp:
Feb 24, 2011, 12:51:32 AM (13 years ago)
Author:
Bruno Cornec
Message:
  • Fix #83. rmntp is indeed optional. But rmntpcmd is mandatory as used to be placed at setup time in the sudoers file in order to allow its usage by root when needed from the build account
Location:
devel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/etc/pb.conf.pod

    r1192 r1215  
    449449=item B<rmntpcmd>
    450450
    451  Nature: Optional
    452  Key: project (as defined in the -p option or PBPROJ environment variable)
    453  Value: NTP command to use to perform time synchronization with the B<rmntp> server.
    454  Conffile: rm
    455  Example: rmntpcmd default = /usr/sbin/ntpdate,rmntpcmd opensuse-10.1-i386 = sntp -P no -r
     451 Nature: Mandatory
     452 Key: project (as defined in the -p option or PBPROJ environment variable)
     453 Value: NTP command to use to perform time synchronization with the B<rmntp> server. Use full path name, as this command will be used in the sudoers file to allow its launch by root.
     454 Conffile: rm
     455 Example: rmntpcmd default = /usr/sbin/ntpdate,rmntpcmd opensuse-10.1-i386 = /usr/sbin/sntp -P no -r
    456456
    457457=item B<rmpath>
     
    534534=item B<ventpcmd>
    535535
    536  Nature: Optional
    537  Key: project (as defined in the -p option or PBPROJ environment variable)
    538  Value: NTP command to use to perform time synchronization with the B<ventp> server.
     536 Nature: Mandatory
     537 Key: project (as defined in the -p option or PBPROJ environment variable)
     538 Value: NTP command to use to perform time synchronization with the B<ventp> server. Use full path name, as this command will be used in the sudoers file to allow its launch by root.
    539539 Conffile: ve
    540540 Example: ventpcmd default = /usr/sbin/ntpdate
     
    554554 Value: true|false. True means that the VE should be rebuild before usage.
    555555 Conffile: ve
    556  Example: ventpcmd default = /usr/sbin/ntpdate
     556 Example: verebuild default = true
    557557
    558558=item B<verpmtype>
     
    647647=item B<vmntpcmd>
    648648
    649  Nature: Optional
    650  Key: project (as defined in the -p option or PBPROJ environment variable)
    651  Value: NTP command to use to perform time synchronization with the B<vmntp> server.
    652  Conffile: vm
    653  Example: vmntpcmd default = /usr/sbin/ntpdate,vmntpcmd opensuse-11.0-i386 = sntp -P no -r
     649 Nature: Mandatory
     650 Key: project (as defined in the -p option or PBPROJ environment variable)
     651 Value: NTP command to use to perform time synchronization with the B<vmntp> server. Use full path name, as this command will be used in the sudoers file to allow its launch by root.
     652 Conffile: vm
     653 Example: vmntpcmd default = /usr/sbin/ntpdate,vmntpcmd opensuse-11.0-i386 = /usr/sbin/sntp -P no -r
    654654
    655655=item B<vmopt>
  • devel/pb/bin/pb

    r1212 r1215  
    27742774        $keyfile = pb_ssh_get(1);
    27752775       
    2776         my ($vmport,$vmntp);
    2777         ($vmhost,$vmport,$vmntp) = pb_conf_get($vtype."host",$vtype."port",$vtype."ntp");
     2776        my ($vmport);
     2777        ($vmhost,$vmport) = pb_conf_get($vtype."host",$vtype."port");
    27782778        $nport = pb_get_port($vmport,$pbos,$vtype);
    27792779   
Note: See TracChangeset for help on using the changeset viewer.