/src/etc/rc.d/ |
motd | 3 # $NetBSD: motd,v 1.11 2020/09/11 12:50:14 kim Exp $ 6 # PROVIDE: motd 12 name="motd" 19 # Update kernel and release info in /etc/motd 23 echo "Updating motd." 24 if [ ! -f /etc/motd ]; then 25 install -c -o root -g wheel -m 664 /dev/null /etc/motd 36 < /etc/motd >> $T 38 sed '1{/^NetBSD.*/{d;};};' < /etc/motd >> $T 40 cmp -s $T /etc/motd || cp $T /etc/mot [all...] |
sshd | 23 sed -E '/^-- UNSAFE KEYS WARNING:/,$d' < /etc/motd > $T 38 cmp -s $T /etc/motd || cp $T /etc/motd
|
Makefile | 31 makemandb mdnsd mixerctl modules mopd motd mountall \
|
/src/usr.bin/login/ |
common.h | 38 void motd(const char *);
|
login_pam.c | 624 motd(fname); 631 motd(fname);
|
login.c | 660 motd(fname); 670 motd(fname);
|
common.c | 133 motd(const char *fname) function in typeref:typename:void
|
/src/games/phantasia/ |
Makefile | 20 ALLFILES=gold lastdead mess monsters void motd characs scoreboard 21 FILES=gold lastdead mess monsters void motd
|
/src/bin/test/ |
TEST.csh | 82 echo 't -x /etc/motd' 83 t -x /etc/motd
|
/src/share/man/man5/ |
Makefile | 13 monthly.5 motd.5 netconfig.5 netgroup.5 networks.5 nologin.5 \
|
/src/etc/ |
Makefile | 128 BIN2+= motd 167 # motd is copied from a different ${MOTD_SOURCE} depending on DISTRIBVER 170 MOTD_SOURCE= motd.current 172 MOTD_SOURCE= motd.beta 174 MOTD_SOURCE= motd.rc 176 MOTD_SOURCE= motd.default 178 CLEANFILES+= motd 179 motd: ${.CURDIR}/${MOTD_SOURCE} ${_NETBSD_VERSION_DEPENDS} target
|
/src/libexec/ftpd/ |
extern.h | 281 char *motd; /* MotD file to display after login */ member in struct:ftpclass
|
conf.c | 106 REASSIGN(curclass.motd, ftpd_strdup(_NAME_FTPLOGINMESG)); 401 } else if (strcasecmp(word, "motd") == 0) { 402 CONF_STRING(motd);
|
ftpd.c | 1646 if (! EMPTYSTR(curclass.motd)) 1647 (void)display_file(conffilename(curclass.motd), 230); 2763 if (! EMPTYSTR(curclass.motd)) 2764 reply(0, "MotD file: %s", conffilename(curclass.motd));
|
/src/sys/external/isc/libsodium/dist/ |
config.guess | 396 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
|
/src/lib/librumpuser/build-aux/ |
config.guess | 420 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
|
/src/sys/external/isc/libsodium/dist/build-aux/ |
config.guess | 420 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
|
/src/usr.sbin/postinstall/ |
postinstall.in | 1615 # motd 1618 additem motd "contents of motd" 1624 "${DEST_DIR}/etc/motd" >/dev/null 2>&1 \ 1626 "${DEST_DIR}/etc/motd" >/dev/null 2>&1 1628 tmp1="$(mktemp /tmp/postinstall.motd.XXXXXXXX)" 1629 tmp2="$(mktemp /tmp/postinstall.motd.XXXXXXXX)" 1630 ${SED} '1,2d' <"${SRC_DIR}/etc/motd" >"${tmp1}" 1631 ${SED} '1,2d' <"${DEST_DIR}/etc/motd" >"${tmp2}" 1641 head -n 2 "${DEST_DIR}/etc/motd" >"${tmp1} [all...] |