Merge "swift: Fix missing log directory in Ubuntu"
This commit is contained in:
commit
3956da6b29
@ -101,6 +101,14 @@ if which journalctl &> /dev/null; then
|
||||
sudo journalctl --no-pager > $LOG_DIR/syslog.txt
|
||||
fi
|
||||
|
||||
# rsyslog
|
||||
if [ -d /etc/rsyslog.d ]; then
|
||||
sudo cp /etc/rsyslogd.d $LOG_DIR/etc/
|
||||
fi
|
||||
if [ -f /etc/rsyslog.conf ]; then
|
||||
sudo cp /etc/rsyslog.conf $LOG_DIR/etc/
|
||||
fi
|
||||
|
||||
# network interfaces
|
||||
if [ -d /etc/sysconfig/network-scripts ]; then
|
||||
sudo cp -r /etc/sysconfig/network-scripts $LOG_DIR/etc/sysconfig/
|
||||
|
@ -14,7 +14,7 @@ class openstack_integration::swift {
|
||||
before => Anchor['swift::service::begin'],
|
||||
}
|
||||
|
||||
if ($facts['os']['name'] == 'Debian') {
|
||||
if ($facts['os']['family'] == 'Debian') {
|
||||
# Ubuntu/Debian requires particular permissions for rsyslog to work
|
||||
$log_dir_owner = $facts['os']['name'] ? {
|
||||
'Debian' => 'swift',
|
||||
|
Loading…
Reference in New Issue
Block a user