From 1f7e87134e52eb2a24c9ca1d31c84c6fd7e778b6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 16 Nov 2012 08:38:46 +0100 Subject: [PATCH] tweaks in the devel scripts --- devel/django-install.txt | 11 +++++++++++ devel/push-debian.sh | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/devel/django-install.txt b/devel/django-install.txt index ad76b6ef..87896b8d 100644 --- a/devel/django-install.txt +++ b/devel/django-install.txt @@ -27,3 +27,14 @@ WARNING: version 1.3 !! $ sudo apt-get install python-django -> 1.4.1_2 +NOTE. (this has more to do with my own vserver-based technique to +create debian VM's) + +I found it useful to also do the following at some point +# apt-get install locales +# dpkg-reconfigure locales +-> en_US.UTF-8 + +The thing is I enter my debian box from a MAC through ssh, and the +MAC has this set: LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 +and I was getting a lot of warnings relating to that anyways diff --git a/devel/push-debian.sh b/devel/push-debian.sh index 37082a5a..9279c86f 100755 --- a/devel/push-debian.sh +++ b/devel/push-debian.sh @@ -1,6 +1,7 @@ #!/bin/bash DIR=$(dirname $0) +ROOT=$(cd $DIR/.. ; pwd -P) host=debian03.pl.sophia.inria.fr -rsync -a "$@" $DIR/ root@$host:/root/myslice/ +rsync -a "$@" --exclude '*.sqlite3' $ROOT/ root@$host:/root/myslice/ -- 2.43.0