Commit 4cf3b339 by Kevin Falcone

Nobody but us knows what Linking means here

parent f3f02791
...@@ -243,7 +243,7 @@ if __name__ == '__main__': ...@@ -243,7 +243,7 @@ if __name__ == '__main__':
link_location = os.path.join(args.enabled, "{}.conf".format(service)) link_location = os.path.join(args.enabled, "{}.conf".format(service))
if os.path.exists(available_file): if os.path.exists(available_file):
subprocess.call("ln -sf {} {}".format(available_file, link_location), shell=True) subprocess.call("ln -sf {} {}".format(available_file, link_location), shell=True)
report.append("Linking service: {}".format(service)) report.append("Enabling service: {}".format(service))
else: else:
raise Exception("No conf available for service: {}".format(link_location)) raise Exception("No conf available for service: {}".format(link_location))
except AWSConnectionError as ae: except AWSConnectionError as ae:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment