Changeset - 16ec0de22bf3
[Not reviewed]
0 3 0
Branko Majic (branko) - 4 years ago 2020-05-07 18:59:45
branko@majic.rs
MAR-152: Switch to /run path in backup_server, ldap_server, and xmpp_server roles.
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
roles/backup_server/files/backup-sshd_config-stretch
Show inline comments
 
@@ -65,7 +65,7 @@ Subsystem sftp internal-sftp
 
UsePAM yes
 

	
 
# Specify a dedicated PID file for the backup SSH.
 
PidFile /var/run/sshd-backup.pid
 
PidFile /run/sshd-backup.pid
 

	
 
# Users logging-in are forced to use the SFTP server.
 
ForceCommand internal-sftp
roles/ldap_server/molecule/default/tests/test_default.py
Show inline comments
 
@@ -32,7 +32,7 @@ def test_ldap_server_service_sockets_and_ports(host):
 

	
 
    assert host.socket('tcp://389').is_listening
 
    assert host.socket('tcp://636').is_listening
 
    assert host.socket('unix:///var/run/slapd/ldapi').is_listening
 
    assert host.socket('unix:///run/slapd/ldapi').is_listening
 

	
 

	
 
def test_ldap_server_service(host):
roles/xmpp_server/templates/prosody.cfg.lua.j2
Show inline comments
 
@@ -56,7 +56,7 @@ c2s_require_encryption = true
 
s2s_secure_auth = false
 

	
 
-- Path to Prosody's PID file.
 
pidfile = "/var/run/prosody/prosody.pid"
 
pidfile = "/run/prosody/prosody.pid"
 

	
 
-- Authentication backend.
 
authentication = "ldap"
0 comments (0 inline, 0 general)