Need to use remote user not local user.
authorBryan Bonvallet <btbonval@gmail.com>
Wed, 19 Feb 2014 20:47:46 +0000 (15:47 -0500)
committerBryan Bonvallet <btbonval@gmail.com>
Wed, 19 Feb 2014 20:47:46 +0000 (15:47 -0500)
fabfile.py

index ac2a6be58d680f4f59f384e0ca50e4e0a20fa92e..d76384d99ec13e146a139f88a3b27902d2fbedc9 100644 (file)
@@ -1,4 +1,3 @@
-
 """ Karmaworld Fabric management script
     Finals Club (c) 2013"""
 
@@ -224,7 +223,7 @@ def file_setup():
       # touch a file and change ownership if needed
       if 'log' in option and not files.exists(filepath):
           sudo('touch {0}'.format(filepath))
-          sudo('chown {0}:{1} {2}'.format(env.local_user, env.group, filepath))
+          sudo('chown {0}:{1} {2}'.format(env.user, env.group, filepath))
 
 @task
 def check_secrets():