Merge pull request #165 from VladimirNovgorodov/master

Fix for #93 and #147
This commit is contained in:
phahulin 2018-09-07 15:43:54 +03:00 committed by GitHub
commit 9fd6a30d4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 9 deletions

View File

@ -4,7 +4,7 @@ clean:
test:
for i in "validator" "explorer" "moc" "bootnode" "netstat"; do \
echo "Verifying $$i..\n"; \
vagrant up $$i; \
vagrant up $$i || exit 1; \
vagrant destroy --force $$i; \
echo "Done $$i verification\n"; \
done

View File

@ -1,13 +1,11 @@
---
- name: Fix ssh Ciphers
lineinfile:
dest: /etc/ssh/sshd_config
insertafter: '#ServerKeyBits'
line: "{{ item }}"
# backrefs: yes
with_items:
- 'Ciphers aes256-ctr,aes192-ctr,aes128-ctr'
- 'MACs hmac-sha1,hmac-ripemd160'
blockinfile:
path: /etc/ssh/sshd_config
insertafter: '^ServerKeyBits'
content: |
Ciphers aes256-ctr,aes192-ctr,aes128-ctr
MACs hmac-sha1,hmac-ripemd160
notify:
- restart sshd