diff options
| author | varac <varacanero@zeromail.org> | 2016-01-13 10:33:12 +0100 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2016-01-13 10:33:12 +0100 | 
| commit | cc63aa3d94d5292a4bfa561ee216f1abe605c5c0 (patch) | |
| tree | 81cec96f2563fb1f0056b6140be8f6fd88493ffd | |
| parent | f7e3c0e2ad1f0199cef2b26c994d9857deb7b689 (diff) | |
[bug] Fix `chmod 755 /etc/leap` cmd on node init
- Resolves: #7790
| -rw-r--r-- | lib/leap_cli/remote/tasks.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/leap_cli/remote/tasks.rb b/lib/leap_cli/remote/tasks.rb index 427bb1f..928d026 100644 --- a/lib/leap_cli/remote/tasks.rb +++ b/lib/leap_cli/remote/tasks.rb @@ -61,7 +61,7 @@ task :install_prerequisites, :max_hosts => MAX_HOSTS do    end    #run "locale-gen"    leap.mkdirs("/etc/leap", "/srv/leap") -  chmod 0755 /etc/leap +  run "chmod 0755 /etc/leap"    leap.mark_initialized  end | 
