X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=systembsd.git;a=blobdiff_plain;f=src%2Finterfaces%2Fhostnamed%2Fhostnamed.c;h=81200e73a92ab0fec3958c80f883e7fbe79cfc7b;hp=f6543e64cdeb066f0a814cfe972d460d6c98ce2d;hb=5ea060f8c0faa96f70bbdda34a3862c208fb3fc0;hpb=df8fc34169ec6b61b9695700e61687b27ad89958 diff --git a/src/interfaces/hostnamed/hostnamed.c b/src/interfaces/hostnamed/hostnamed.c index f6543e6..81200e7 100644 --- a/src/interfaces/hostnamed/hostnamed.c +++ b/src/interfaces/hostnamed/hostnamed.c @@ -199,11 +199,12 @@ on_handle_set_static_hostname(Hostname1 *hn1_passed_interf, gpointer data) { GVariant *params; - gchar *proposed_static_hostname, *valid_static_hostname_buf; + gchar *proposed_static_hostname, *valid_static_hostname_buf, *bsd_hostname_try; const gchar *bus_name; gboolean policykit_auth, ret, try_to_set; size_t check_length; check_auth_result is_authed; + proposed_static_hostname = NULL; ret = try_to_set = FALSE; @@ -261,6 +262,17 @@ on_handle_set_static_hostname(Hostname1 *hn1_passed_interf, g_strdelimit(STATIC_HOSTNAME, " ", '-'); hostname1_set_static_hostname(hn1_passed_interf, STATIC_HOSTNAME); g_ptr_array_add(hostnamed_freeable, valid_static_hostname_buf); + + /* set string in OS_HOSTNAME_PATH ("/etc/myname" on bsd) */ + bsd_hostname_try = get_bsd_hostname(STATIC_HOSTNAME); + GError *debug_error; + if(!bsd_hostname_try || !g_file_set_contents(OS_HOSTNAME_PATH, bsd_hostname_try, -1, &debug_error)) + g_printf("failed to write to %s! are you root?\n", OS_HOSTNAME_PATH); + + if(bsd_hostname_try) + g_free(bsd_hostname_try); + + /* call sethostname(3) too */ ret = (!sethostname(valid_static_hostname_buf, MAXHOSTNAMELEN)) ? TRUE : FALSE; /* TODO set /etc/myname, guarantee domain or substitue .home.network" */ hostname1_complete_set_static_hostname(hn1_passed_interf, invoc); }