No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

root_znc_pw.j2 190B

1234567891011
  1. #!/usr/bin/expect -f
  2. spawn /usr/bin/znc --makepass
  3. expect "Enter password:"
  4. send -- "{{ irc_admin_password }}\r"
  5. expect "Confirm password:"
  6. send -- "{{ irc_admin_password }}\r"
  7. interact