Skip to content

Commit 08cc625

Browse files
committed
fix: add default moniker to hosts
1 parent 76b6a5d commit 08cc625

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/deployment/main.js

+2
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,7 @@ ${name}:
885885
for (let instance = 0; instance < ips.length; instance += 1) {
886886
const ip = ips[instance];
887887
const node = `node${offset + instance}`;
888+
const moniker = `Agoric${offset + instance}`;
888889
const units =
889890
node === PROVISIONER_NODE
890891
? `\
@@ -895,6 +896,7 @@ ${name}:
895896
: '';
896897
const host = `\
897898
${node}:
899+
moniker: ${moniker}
898900
ansible_host: ${ip}
899901
ansible_ssh_user: root
900902
ansible_ssh_private_key_file: '${SSH_PRIVATE_KEY_FILE}'

0 commit comments

Comments
 (0)