Home | History | Annotate | Download | only in lsb

Lines Matching refs:hostname

0 /* hostname.c - Get/Set the hostname
5 * http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/hostname.html
7 USE_HOSTNAME(NEWTOY(hostname, NULL, TOYFLAG_BIN))
9 config HOSTNAME
10 bool "hostname"
13 usage: hostname [newname]
15 Get/Set the current hostname
23 const char *hostname = toys.optargs[0];
24 if (hostname) {
25 if (sethostname(hostname, strlen(hostname)))
26 perror_exit("set failed '%s'", hostname);