]> Frank Brehm's Git Trees - pixelpark/create-terraform.git/commitdiff
code optimizations
authorVeselin Bochev <veselin.bochev@WKMZT0869FF7.global.publicisgroupe.net>
Wed, 1 Jun 2022 13:29:03 +0000 (16:29 +0300)
committerVeselin Bochev <veselin.bochev@WKMZT0869FF7.global.publicisgroupe.net>
Wed, 1 Jun 2022 13:29:03 +0000 (16:29 +0300)
bin/pre-terraform

index 17d8c124e19d9a5effa6c9301c6b71db72ae68ed..71a5ac6cbc1cb06b90d8f655a964fcb5ecd8a033 100755 (executable)
@@ -41,13 +41,15 @@ try:
 except:
     # print("A minimum of one argument is needed to proceed.", file=sys.stderr)
     print('usage: %s <hostname>' % sys.argv[0])
-    print()
-    print('Important: This is used to generate YAML file for the terraform `create-terraform`')
-    print('           script and be able to generate artifcats. Only used for hosts which are')
-    print('           already in the PuppetDB.')
-    print()
-    print('           Fields consisting of `__` should be manually checked and corrected.')
-    print('           Always double check all data before proceeding further.')
+    print('''
+Important:
+This is used to generate YAML file for the terraform `create-terraform`
+script and be able to generate artifcats. Only used for hosts which are
+already in the PuppetDB.
+
+Fields consisting of `__` should be manually checked and corrected.
+Always double check all data before proceeding further.
+    ''')
     _exit(1)
 
 req = Request("%s?query=%s" % (url, quote_plus(data, encoding="ascii")), method='GET')