diff options
author | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-09-12 23:31:06 +0300 |
---|---|---|
committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-09-12 23:31:06 +0300 |
commit | 16715e6aa82f036820ac762739adc79c292fb7b4 (patch) | |
tree | c59dbb20b7bd48a0ed8ab0f09c6238ec4dda911f /scripts/update-venus | |
parent | svnignore->gitignore (diff) | |
download | planet-16715e6aa82f036820ac762739adc79c292fb7b4.tar.gz planet-16715e6aa82f036820ac762739adc79c292fb7b4.tar.bz2 planet-16715e6aa82f036820ac762739adc79c292fb7b4.zip |
Small fixes to cron and base configs
Diffstat (limited to 'scripts/update-venus')
-rw-r--r-- | scripts/update-venus | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/update-venus b/scripts/update-venus index 7c0c02e..a58d6ee 100644 --- a/scripts/update-venus +++ b/scripts/update-venus @@ -8,14 +8,15 @@ VENUS_DIR="/usr/lib/python2.6/site-packages/venus/" cd ${BASE_DIR} # Get latest SVN changes -git pull ${BASE_DIR}/planet-gentoo/configs/ >/dev/null 2>&1 -git pull ${BASE_DIR}/planet-gentoo/templates/ >/dev/null 2>&1 +#git pull ${BASE_DIR}/planet-gentoo/configs/ >/dev/null 2>&1 +#git pull ${BASE_DIR}/planet-gentoo/templates/ >/dev/null 2>&1 +git pull ${BASE_DIR}planet-gentoo/ >/dev/null 2>&1 # Run Venus for x in planet universe; do if [[ ! -z $RESTRICT ]]; then for y in $RESTRICT; do - rm ${BASE_DIR}configs/${x}/${y} + rm ${BASE_DIR}planet-gentoo/configs/${x}/${y} done fi cat ${BASE_DIR}planet-gentoo/configs/base/venus.${x} ${BASE_DIR}planet-gentoo/configs/${x}/* > ${BASE_DIR}generated_configs/venus.${x}.ini |