Changeset 919
- Timestamp:
- Jul 26, 2010, 6:25:55 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dasscm/trunk/etc/dasscm.conf
r916 r919 34 34 35 35 # 36 # file to store the permissions of the checked-in file36 # DEPRECATED: file to store the permissions of the checked-in file 37 37 # 38 DASSCM_PERMISSION_FILE="/etc/permissions.d/dasscm.permission_backup" 38 #DASSCM_PERMISSION_FILE="/etc/permissions.d/dasscm.permission_backup" 39 40 # 41 # List of files and directories, that are always checked and stored in repository. 42 # Entries must be seperated by blanks (" "). 43 # DASSCM_ADDITIONAL_FILES is also used, to store the results of plugins. 44 # 45 DASSCM_ADDITIONAL_FILES="/etc/dasscm.conf /var/lib/dasscm/plugin-results/" 39 46 40 47 # 41 48 # plugin definitions 42 49 # 50 # to add a plugin, 51 # define DASSCM_PLUGIN_TEST_YOURPLUGINNAME and DASSCM_PLUGIN_CMD_YOURPLUGINNAME 52 # The plugin is performed every time, 53 # the return code of DASSCM_PLUGIN_TEST_YOURPLUGINNAME is 0 (no error). 54 # Plugin must output there result to STDOUT. 55 # The result is stored at $DASSCM_LOCAL_REPOSITORY_BASE/plugin-results/, 56 # normally /var/lib/dasscm/plugin-results/ 57 # 58 # to store plugin results, 59 # make sure, /var/lib/dasscm/plugin-results/ is included in DASSCM_ADDITIONAL_FILES 60 # 61 62 ## always perform permission plugin 63 DASSCM_PLUGIN_TEST_PERMISSIONS="true" 64 DASSCM_PLUGIN_CMD_PERMISSIONS="dasscm permissions" 65 66 ## perform rpmlist plugin only if rpm is available and rpm db has changed 43 67 DASSCM_PLUGIN_TEST_RPMLIST="type rpm && test /var/lib/rpm/Packages -nt /var/lib/dasscm/plugin-results/RPMLIST" 44 68 DASSCM_PLUGIN_CMD_RPMLIST="rpm -qa --last"
Note:
See TracChangeset
for help on using the changeset viewer.