fabric - как получить имя хоста при развертывании
У меня есть fabfile
env.hosts = [
# huge list, 80 hostnames
]
def dm():
with cd('/home/project/application'):
# how to get the actual hostname here, so I can run certain commands depending on hostname?
Есть идеи? документация по ткани ничего не дает мне об этом
1 ответ:
Вы можете получить доступ к имени хоста с помощью
env.host
.