6 lines
111 B
Bash
6 lines
111 B
Bash
#!/bin/sh -e
|
|
|
|
find /etc/update-motd.d -type f,l ! -name '98*' -delete
|
|
/bin/run-parts /etc/update-motd.d
|
|
|
|
exit 0 |