From: Frank Brehm Date: Mon, 4 May 2020 14:06:19 +0000 (+0200) Subject: Changed aliases X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=ceacd1a83a42de5446e1b021a036b18aa5ef0bce;p=config%2Fbruni%2Fetc-mint-new1.git Changed aliases --- diff --git a/.etckeeper b/.etckeeper index e0d779c..93078d5 100755 --- a/.etckeeper +++ b/.etckeeper @@ -5,7 +5,6 @@ mkdir -p './NetworkManager/dispatcher.d/pre-down.d' mkdir -p './NetworkManager/dispatcher.d/pre-up.d' mkdir -p './NetworkManager/dnsmasq-shared.d' mkdir -p './NetworkManager/dnsmasq.d' -mkdir -p './NetworkManager/system-connections' mkdir -p './ODBCDataSources' mkdir -p './X11/xkb' mkdir -p './apparmor.d/force-complain' @@ -104,6 +103,7 @@ maybe chmod 0755 'NetworkManager/dispatcher.d/pre-up.d' maybe chmod 0755 'NetworkManager/dnsmasq-shared.d' maybe chmod 0755 'NetworkManager/dnsmasq.d' maybe chmod 0755 'NetworkManager/system-connections' +maybe chmod 0600 'NetworkManager/system-connections/eth0' maybe chmod 0755 'Nextcloud' maybe chmod 0644 'Nextcloud/sync-exclude.lst' maybe chmod 0755 'ODBCDataSources' @@ -1223,6 +1223,7 @@ maybe chmod 0644 'default/kerneloops' maybe chmod 0644 'default/keyboard' maybe chmod 0644 'default/libvirt-guests' maybe chmod 0644 'default/libvirtd' +maybe chmod 0644 'default/local_service' maybe chmod 0644 'default/locale' maybe chmod 0644 'default/mdadm' maybe chmod 0644 'default/motd-news' @@ -2053,6 +2054,8 @@ maybe chmod 0755 'libvirt/qemu' maybe chmod 0644 'libvirt/qemu-lockd.conf' maybe chmod 0644 'libvirt/qemu-sanlock.conf' maybe chmod 0600 'libvirt/qemu.conf' +maybe chmod 0600 'libvirt/qemu/Lena.xml' +maybe chmod 0600 'libvirt/qemu/Vera.xml' maybe chmod 0755 'libvirt/qemu/networks' maybe chmod 0755 'libvirt/qemu/networks/autostart' maybe chmod 0600 'libvirt/qemu/networks/default.xml' @@ -2721,6 +2724,7 @@ maybe chmod 0755 'systemd/system/final.target.wants' maybe chmod 0755 'systemd/system/getty.target.wants' maybe chmod 0755 'systemd/system/graphical.target.wants' maybe chmod 0644 'systemd/system/hddtemp.service' +maybe chmod 0644 'systemd/system/local.service' maybe chmod 0755 'systemd/system/multi-user.target.wants' maybe chmod 0755 'systemd/system/network-online.target.wants' maybe chmod 0755 'systemd/system/oem-config.service.wants' diff --git a/aliases b/aliases index 93a3249..6ff52b6 100644 --- a/aliases +++ b/aliases @@ -1,2 +1,47 @@ # See man 5 aliases for format -postmaster: root +MAILER-DAEMON: postmaster +postmaster: root +root: frank + +# General redirections for pseudo accounts. +adm: root +bin: root +daemon: root +exim: root +lp: root +mail: root +named: root +nobody: root +postfix: root + +# Well-known aliases -- these should be filled in! +# root: +# operator: + +# Standard RFC2142 aliases +abuse: postmaster +ftp: root +hostmaster: root +news: usenet +noc: root +security: root +usenet: root +uucp: root +webmaster: root +www: webmaster + +# trap decode to catch security attacks +# decode: /dev/null + +# Persönliche Aliase + +# Frank Brehm +frank: frank@brehm-online.com +fbr: frank +brehm: frank +fbrehm: frank +f.brehm: frank +f-brehm: frank +frank.brehm: frank +frank-brehm: frank + diff --git a/aliases.db b/aliases.db index c529f0f..c5779ff 100644 Binary files a/aliases.db and b/aliases.db differ diff --git a/update-motd.d/50-motd-news b/update-motd.d/50-motd-news index 1a24852..b97dc05 100755 --- a/update-motd.d/50-motd-news +++ b/update-motd.d/50-motd-news @@ -1 +1,27 @@ -#!/bin/sh +#!/bin/bash + +export LC_ALL=de_DE.utf8 + +uname -a +/usr/bin/lsb_release -d | sed -e 's/^[ ]*Description[ ]*:[ ]*//' + +if [[ -f /etc/motd.tail ]] ; then + cat /etc/motd.tail +fi + +if [[ -x /usr/bin/fortune ]] ; then + echo + /usr/bin/fortune de +elif [[ -x /usr/games/fortune ]] ; then + echo + /usr/games/fortune de +fi + +if [[ -x /usr/bin/ddate ]] ; then + echo + /usr/bin/ddate +fi + +echo + +# vim: ts=4 expandtab list