Changeset 1190 in ProjectBuilder for devel/pb-modules/etc/pb.conf


Ignore:
Timestamp:
Feb 15, 2011, 11:46:55 AM (13 years ago)
Author:
Bruno Cornec
Message:
  • Fix bugs in sudoers generation (syntax issue)
  • Improve pb_get_sudocmds to remov duplicates, and take an additional list of commands to filter
  • Change pb_date2v interface to just return the line we want.
File:
1 edited

Legend:

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

    r1181 r1190  
    203203
    204204# Command to update the distribution to latest state
    205 osupd du = sudo apt-get update; export DEBIAN_FRONTEND="noninteractive"; apt-get --quiet -y --force-yes dist-upgrade
     205osupd du = sudo /usr/bin/apt-get update; export DEBIAN_FRONTEND="noninteractive"; /usr/bin/apt-get --quiet -y --force-yes dist-upgrade
    206206osupd gen = sudo emerge --update --deep world; sudo revdep-rebuild
    207207osupd rpm = sudo /usr/bin/yum clean all; sudo /usr/bin/yum -y update
     
    213213# Chaining the commands allow to only test for what is able to be installed,
    214214# not the update of the repo which may well be unaccessible if too old
    215 osins du = sudo apt-get update ; sudo apt-get -y install
     215osins du = sudo /usr/bin/apt-get update ; sudo /usr/bin/apt-get -y install
    216216osins gen = sudo emerge
    217217osins rpm = sudo /usr/bin/yum clean all; sudo /usr/bin/yum -y update ; sudo /usr/bin/yum -y install
Note: See TracChangeset for help on using the changeset viewer.