Changeset 306
- Timestamp:
- 01/26/2009 21:53:49 (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
- 1 moved
-
Makefile.am (modified) (3 diffs)
-
confman.conf.in (modified) (3 diffs)
-
confman.conf.sample.in (moved) (moved from trunk/confman.conf.sample) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r303 r306 8 8 pkgdata_SCRIPTS = confmancommon.sh 9 9 dist_pkgdata_SCRIPTS = confmanlib.sh confmandoc.sh 10 dist_sysconf_DATA = confman.conf.sample10 sysconf_DATA = confman.conf.sample 11 11 sysconfdefaults_DATA = confman.conf 12 12 bashcomp_DATA = confman_completion … … 25 25 confmancommon.sh.in \ 26 26 confman.conf.in \ 27 confman.conf.sample.in \ 27 28 confman_completion.in \ 28 29 LICENSE 29 30 30 31 do_subst = $(SED) -e 's,[@]datadir[@],$(datadir),g' \ 32 -e 's,[@]localstatedir[@],$(localstatedir),g' \ 31 33 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \ 32 34 -e 's,[@]pkglibexecdir[@],$(pkglibexecdir),g' \ 35 -e 's,[@]prefix[@],$(prefix),g' \ 33 36 -e 's,[@]sbindir[@],$(sbindir),g' \ 34 37 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \ … … 57 60 $(do_subst) < confman.conf.in > confman.conf 58 61 62 confman.conf.sample: confman.conf.sample.in Makefile 63 $(do_subst) < confman.conf.sample.in > confman.conf.sample 64 59 65 confman_completion: confman_completion.in Makefile 60 66 $(do_subst) < confman_completion.in > confman_completion -
trunk/confman.conf.in
r302 r306 16 16 17 17 # The system lockfile 18 LOCKFILE=" /var/run/confman.lock"18 LOCKFILE="@localstatedir@/run/confman.lock" 19 19 20 20 # The script for locking … … 30 30 WORK_PATH="${HOME}/src/conf" 31 31 32 # The path to our current host's recipe file33 RECIPE_FILE="/var/db/confman/recipe"34 35 32 # The list of singularities on this host 36 33 SINGULARITIES="" 37 34 38 35 # A place where confman can keep state 39 REPO_DB="/var/db/confman" 36 REPO_DB="@localstatedir@/db/confman" 37 38 # The path to our current host's recipe file 39 RECIPE_FILE="${REPO_DB}/recipe" 40 40 41 41 # The warning message for all files … … 57 57 # file://, http://, https://, ftp://, sftp://, and scp://. Port numbers 58 58 # are not handled correctly in sftp and scp URIs. 59 CONF_EXPORT_FILE=" /var/db/confman/export.tgz"59 CONF_EXPORT_FILE="${REPO_DB}/export.tgz" 60 60 CONF_EXPORT_URI="scp://confman@${REPO_HOSTNAME}${CONF_EXPORT_FILE}" 61 61 CONF_EXPORT_MODE="0640" 62 62 CONF_EXPORT_USER="$(whoami)" 63 63 CONF_EXPORT_GROUP="${CONF_GROUP}" 64 CONF_SSH_KEY="/root/ id_rsa"64 CONF_SSH_KEY="/root/.ssh/id_rsa" 65 65 66 66 # Enable or disable debugging -
trunk/confman.conf.sample.in
r302 r306 10 10 11 11 # The path on the remote host to find the repository: 12 REPO_PATH=" ${PREFIX}/repo/conf/conf"12 REPO_PATH="@prefix@/repo/conf/conf" 13 13 14 14 # The list of singularities on this host … … 19 19 # file://, http://, https://, ftp://, sftp://, and scp://. Port numbers 20 20 # are not handled correctly in sftp and scp URIs. 21 CONF_EXPORT_FILE=" /var/db/confman/export.tgz"21 CONF_EXPORT_FILE="@localstatedir@/db/confman/export.tgz" 22 22 CONF_EXPORT_URI="scp://confman@${REPO_HOSTNAME}${CONF_EXPORT_FILE}" 23 CONF_SSH_KEY="/root/ id_rsa"23 CONF_SSH_KEY="/root/.ssh/id_rsa" 24 24
Note: See TracChangeset
for help on using the changeset viewer.
