summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2011-04-29 10:37:17 -0500
committerSol Jerome <sol.jerome@gmail.com>2011-04-29 10:37:58 -0500
commit1229b74427843af749fe74edf446166dadd8cb85 (patch)
tree98986029e5195e0f47d56602bdac4dbc16728c6d /src
parent99ee7bb5e10e63b80f1ffff7e634815a289ad6ff (diff)
downloadbcfg2-1229b74427843af749fe74edf446166dadd8cb85.tar.gz
bcfg2-1229b74427843af749fe74edf446166dadd8cb85.tar.bz2
bcfg2-1229b74427843af749fe74edf446166dadd8cb85.zip
bcfg2: Fix typos
Signed-off-by: Sol Jerome <sol.jerome@gmail.com> (cherry picked from commit beb08649193f2c799017024bb738dc31b3420cb2)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/sbin/bcfg24
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sbin/bcfg2 b/src/sbin/bcfg2
index c287967a0..7f7d8f5c6 100755
--- a/src/sbin/bcfg2
+++ b/src/sbin/bcfg2
@@ -137,8 +137,8 @@ class Client:
script.write(probe.text)
script.close()
os.close(scripthandle)
- os.chmod(script.name, stat.S_IRUSR | stat.IRGRP | stat.IROTH |
- stat.S_IXUSR | stat.IXGRP | stat.IXOTH |
+ os.chmod(script.name, stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH |
+ stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH |
stat.S_IWUSR) # 0755
ret.text = os.popen(script.name).read().strip()
self.logger.info("Probe %s has result:\n%s" % (name, ret.text))