Changeset 2152 in ProjectBuilder for devel/pb-modules
- Timestamp:
- Dec 23, 2016, 2:21:42 AM (8 years ago)
- Location:
- devel/pb-modules/lib/ProjectBuilder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/lib/ProjectBuilder/Conf.pm
r2077 r2152 65 65 66 66 =head1 USAGE 67 68 The configuration files are loaded in a specific order from most generic to the most specific 69 to allow for overwrite to work: 70 71 1. /usr/share/pb/pb.conf - the read-only system conf file provided by install 72 2. /etc/pb/pb.conf - the same global conf file given to the sysadmin in order to make system wide modifications 73 3. /path/to/project.pb - Configuration file for the project we're building for 74 4. /(vm|ve|rm)path/to/.pbrc - configuration file for VM, VE or RM specific parameters. Cumulative should be orthogonal 75 5. $HOME/.pbrc - user's configuration file 67 76 68 77 =over 4 -
devel/pb-modules/lib/ProjectBuilder/Distribution.pm
r2136 r2152 132 132 # the location of the conf file is finalyzed at install time 133 133 # depending whether we deal with package install or tar file install 134 135 pb_conf_add(pb_distro_sysconffile()); 136 137 # Similarly for the local file available for sysadmin. After the previous one to allow overwrite to work 134 138 pb_conf_add(pb_distro_conffile()); 135 136 # Similarly for the local file available for sysadmin. After the previous one to allow overwrite to work137 pb_conf_add(pb_distro_sysconffile());138 139 139 140 # If we don't know which distribution we're on, then guess it … … 739 740 =item B<pb_distro_conf_print> 740 741 741 This function prints every configuration parameter in order to help debug stacking issues with conf files. If a VM/VE/RM is given restrict display to this distribution. Ifparameters are passed, restrict again the display to these values only.742 This function prints every configuration parameter in order to help debug stacking issues with conf files. If a VM/VE/RM is given, restrict display to this distribution. If parameters are passed, restrict again the display to these values only. 742 743 743 744 =cut
Note:
See TracChangeset
for help on using the changeset viewer.