diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-04 19:48:52 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-04 19:48:55 +0200 |
commit | da103f94848e88cd20e8e6b57f352d0351b85ec3 (patch) | |
tree | b43eff3c142d89476f15ab54df770d2f95b2623a | |
parent | 6968a8e40fc6907daa46acd2f3e53acbc95ba108 (diff) | |
download | vyatta-cfg-system-da103f94848e88cd20e8e6b57f352d0351b85ec3.tar.gz vyatta-cfg-system-da103f94848e88cd20e8e6b57f352d0351b85ec3.zip |
lsb: remove no longer required issue templates
This removes the overrides for /etc/issue and /etc/issue.net
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | debian/vyatta-cfg-system.postinst.in | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index 190a66bc..d5e6f757 100644 --- a/Makefile.am +++ b/Makefile.am @@ -57,8 +57,6 @@ src_valid_address = src/valid_address.c src_local_ip = src/local_ip.c sysconf_DATA += sysconf/LICENSE -sysconf_DATA += sysconf/issue -sysconf_DATA += sysconf/issue.net sysconf_DATA += sysconf/motd.tail sysconf_DATA += sysconf/rsyslog.conf sysconf_DATA += sysconf/securetty diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index a84ec658..97b0f9aa 100755 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -48,12 +48,6 @@ if [ "$sysconfdir" != "/etc" ]; then # purge off ancient devfs stuff from /etc/securetty cp $sysconfdir/securetty /etc/securetty - for f in issue issue.net; do - if [ ! -e /etc/$f.old ]; then - cp $sysconfdir/$f /etc/$f - fi - done - # Set file capabilities sed -r -e '/^#/d' -e '/^[[:blank:]]*$/d' < $sysconfdir/filecaps | \ while read capability path; do |