]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/hostname-setup.c
util-lib: split our string related calls from util.[ch] into its own file string...
[thirdparty/systemd.git] / src / core / hostname-setup.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25
26 #include "fileio.h"
27 #include "hostname-util.h"
28 #include "log.h"
29 #include "macro.h"
30 #include "string-util.h"
31 #include "util.h"
32 #include "hostname-setup.h"
33
34 int hostname_setup(void) {
35 int r;
36 _cleanup_free_ char *b = NULL;
37 const char *hn;
38 bool enoent = false;
39
40 r = read_hostname_config("/etc/hostname", &b);
41 if (r < 0) {
42 if (r == -ENOENT)
43 enoent = true;
44 else
45 log_warning_errno(r, "Failed to read configured hostname: %m");
46
47 hn = NULL;
48 } else
49 hn = b;
50
51 if (isempty(hn)) {
52 /* Don't override the hostname if it is already set
53 * and not explicitly configured */
54 if (hostname_is_set())
55 return 0;
56
57 if (enoent)
58 log_info("No hostname configured.");
59
60 hn = "localhost";
61 }
62
63 if (sethostname_idempotent(hn) < 0)
64 return log_warning_errno(errno, "Failed to set hostname to <%s>: %m", hn);
65
66 log_info("Set hostname to <%s>.", hn);
67 return 0;
68 }