Skip to content

Commit

Permalink
Don't supply python version explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
tofumatt committed Oct 23, 2011
1 parent a232ef1 commit ebf02e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions puppet/manifests/classes/playdoh.pp
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@

exec { "syncdb":
cwd => "$PROJ_DIR",
command => "python2.6 ./manage.py syncdb --noinput",
command => "python ./manage.py syncdb --noinput",
require => Exec["grant_mysql_database"];
}

exec { "sql_migrate":
cwd => "$PROJ_DIR",
command => "python2.6 ./vendor/src/schematic/schematic migrations/",
command => "python ./vendor/src/schematic/schematic migrations/",
require => [
Service["mysql"],
Package["python2.6-dev", "libapache2-mod-wsgi", "python-wsgi-intercept" ],
Expand Down
2 changes: 1 addition & 1 deletion puppet/manifests/classes/python.pp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

exec { "pip-install":
command => "easy_install-2.6 -U pip",
command => "easy_install -U pip",
creates => "pip",
require => Package["python26-devel", "python26-distribute"]
}
Expand Down

0 comments on commit ebf02e6

Please sign in to comment.