Compare commits
77 Commits
0.9.10.0-2
...
main
Author | SHA1 | Date | |
---|---|---|---|
7a9200fb45 | |||
abcc2b3ce9 | |||
9f0d902f0a | |||
c634724ef5 | |||
f88b765477 | |||
e0abc0fe42 | |||
0ccb39872a | |||
7db504c2e4 | |||
4a04173f79 | |||
cf8af77e18 | |||
6f7d240199 | |||
36823c152b | |||
db4cceadaa | |||
78b6b3d21c | |||
4123023519 | |||
4e1c883898 | |||
070c7fac4c | |||
16d158c242 | |||
58cffc72fe | |||
90be64ad64 | |||
202a9c97b9 | |||
583d687b1c | |||
f5a1758c0d | |||
51ecc21a74 | |||
c7fe7af260 | |||
b0917df44a | |||
e0924f3df7 | |||
a6caf24422 | |||
f6dd7a7312 | |||
eed52d13c7 | |||
09aa843adc | |||
2a4b4ba08d | |||
b23e0ae427 | |||
8ad256c0e2 | |||
e280d0df66 | |||
1a390e8aa1 | |||
1f889211b8 | |||
6a4ce958a6 | |||
098204921a | |||
214764c5a7 | |||
1ed1f8cb6d | |||
3020b566e6 | |||
7f7eb48bda | |||
8e20bbdec9 | |||
fc772e6346 | |||
5d7e3e362b | |||
41ea831bf3 | |||
b10097019f | |||
cb41c62080 | |||
1d9cb19d8f | |||
a074f3176f | |||
c23f587395 | |||
9a130885f1 | |||
5e5010fef0 | |||
6bc4299ba0 | |||
2a9818d221 | |||
0423ec399a | |||
dccda14aa9 | |||
970ffc9a38 | |||
afe4bee881 | |||
effc5f164b | |||
92778afe92 | |||
9520cd6800 | |||
d0b5ee9843 | |||
a9172b7868 | |||
df08900522 | |||
4440b9610a | |||
5420669d0f | |||
676d5d0457 | |||
4787009d1c | |||
13bce8048c | |||
b6bbba076f | |||
1b2c3ed494 | |||
eafb0de390 | |||
a8f9aed55e | |||
c3ac047029 | |||
6b0091484e |
@ -1,12 +0,0 @@
|
|||||||
diff -Nru NetworkManager-0.8.2.orig//initscript/RedHat/NetworkManager NetworkManager-0.8.2/initscript/RedHat/NetworkManager
|
|
||||||
--- NetworkManager-0.8.2.orig//initscript/RedHat/NetworkManager.in 2010-11-03 21:11:32.000000000 +0100
|
|
||||||
+++ NetworkManager-0.8.2/initscript/RedHat/NetworkManager.in 2010-12-03 03:23:19.419087517 +0100
|
|
||||||
@@ -49,7 +49,7 @@
|
|
||||||
echo
|
|
||||||
|
|
||||||
echo -n $"Starting NetworkManager daemon: "
|
|
||||||
- daemon --pidfile $pidfile --check $servicename $processname --pid-file=$pidfile
|
|
||||||
+ daemon --pidfile=$pidfile --check $servicename $processname --pid-file=$pidfile
|
|
||||||
RETVAL=$?
|
|
||||||
echo
|
|
||||||
if [ -n "${NETWORKWAIT}" ]; then
|
|
@ -1,287 +0,0 @@
|
|||||||
Submitted By: Armin K. <krejzi at email dot com>
|
|
||||||
Date: 2012-06-03
|
|
||||||
Initial Package Version: 0.9.4.0
|
|
||||||
Upstream Status: In upstream SVN
|
|
||||||
Origin: Upstream
|
|
||||||
Description: libnm-glib: initialize GError, else invalid free() crash can occur (rh #809123)
|
|
||||||
libnm-glib: more ensure_inited() fixing
|
|
||||||
ppp: don't use struct ifpppstatsreq that was removed from linux/ip_ppp.h
|
|
||||||
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-access-point.c NetworkManager/libnm-glib/nm-access-point.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-access-point.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-access-point.c 2012-06-03 21:00:42.173840751 +0200
|
|
||||||
@@ -464,6 +464,8 @@
|
|
||||||
{
|
|
||||||
NMAccessPoint *ap = NM_ACCESS_POINT (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_FLAGS:
|
|
||||||
g_value_set_uint (value, nm_access_point_get_flags (ap));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-active-connection.c NetworkManager/libnm-glib/nm-active-connection.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-active-connection.c 2012-03-12 22:25:57.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-active-connection.c 2012-06-03 21:00:42.174840767 +0200
|
|
||||||
@@ -394,6 +394,8 @@
|
|
||||||
{
|
|
||||||
NMActiveConnection *self = NM_ACTIVE_CONNECTION (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_CONNECTION:
|
|
||||||
g_value_set_string (value, nm_active_connection_get_connection (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-client.c NetworkManager/libnm-glib/nm-client.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-client.c 2012-03-21 18:29:52.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-client.c 2012-06-03 21:00:42.174840767 +0200
|
|
||||||
@@ -1502,6 +1502,8 @@
|
|
||||||
NMClient *self = NM_CLIENT (object);
|
|
||||||
NMClientPrivate *priv = NM_CLIENT_GET_PRIVATE (self);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_VERSION:
|
|
||||||
g_value_set_string (value, nm_client_get_version (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-bond.c NetworkManager/libnm-glib/nm-device-bond.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-bond.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-bond.c 2012-06-03 21:00:42.174840767 +0200
|
|
||||||
@@ -241,6 +241,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceBond *device = NM_DEVICE_BOND (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_bond_get_hw_address (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-bt.c NetworkManager/libnm-glib/nm-device-bt.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-bt.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-bt.c 2012-06-03 21:00:42.174840767 +0200
|
|
||||||
@@ -303,6 +303,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceBt *device = NM_DEVICE_BT (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_bt_get_hw_address (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device.c NetworkManager/libnm-glib/nm-device.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device.c 2012-03-23 21:54:25.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device.c 2012-06-03 21:00:42.175840783 +0200
|
|
||||||
@@ -313,6 +313,8 @@
|
|
||||||
NMDevice *device = NM_DEVICE (object);
|
|
||||||
NMDevicePrivate *priv = NM_DEVICE_GET_PRIVATE (device);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_DEVICE_TYPE:
|
|
||||||
g_value_set_uint (value, nm_device_get_device_type (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-ethernet.c NetworkManager/libnm-glib/nm-device-ethernet.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-ethernet.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-ethernet.c 2012-06-03 21:00:42.175840783 +0200
|
|
||||||
@@ -311,6 +311,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceEthernet *device = NM_DEVICE_ETHERNET (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_ethernet_get_hw_address (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-infiniband.c NetworkManager/libnm-glib/nm-device-infiniband.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-infiniband.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-infiniband.c 2012-06-03 21:00:42.175840783 +0200
|
|
||||||
@@ -250,6 +250,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceInfiniband *device = NM_DEVICE_INFINIBAND (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_infiniband_get_hw_address (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-modem.c NetworkManager/libnm-glib/nm-device-modem.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-modem.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-modem.c 2012-06-03 21:00:42.175840783 +0200
|
|
||||||
@@ -205,6 +205,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceModem *self = NM_DEVICE_MODEM (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_MODEM_CAPS:
|
|
||||||
g_value_set_uint (value, nm_device_modem_get_modem_capabilities (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-olpc-mesh.c NetworkManager/libnm-glib/nm-device-olpc-mesh.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-olpc-mesh.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-olpc-mesh.c 2012-06-03 21:00:42.176840799 +0200
|
|
||||||
@@ -257,6 +257,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceOlpcMesh *device = NM_DEVICE_OLPC_MESH (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_olpc_mesh_get_hw_address (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-vlan.c NetworkManager/libnm-glib/nm-device-vlan.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-vlan.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-vlan.c 2012-06-03 21:00:42.176840799 +0200
|
|
||||||
@@ -264,6 +264,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceVlan *device = NM_DEVICE_VLAN (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_vlan_get_hw_address (device));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-wifi.c NetworkManager/libnm-glib/nm-device-wifi.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-wifi.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-wifi.c 2012-06-03 21:00:42.176840799 +0200
|
|
||||||
@@ -501,6 +501,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceWifi *self = NM_DEVICE_WIFI (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_wifi_get_hw_address (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-device-wimax.c NetworkManager/libnm-glib/nm-device-wimax.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-device-wimax.c 2012-03-20 21:40:12.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-device-wimax.c 2012-06-03 21:00:42.176840799 +0200
|
|
||||||
@@ -444,6 +444,8 @@
|
|
||||||
{
|
|
||||||
NMDeviceWimax *self = NM_DEVICE_WIMAX (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_HW_ADDRESS:
|
|
||||||
g_value_set_string (value, nm_device_wimax_get_hw_address (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-dhcp4-config.c NetworkManager/libnm-glib/nm-dhcp4-config.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-dhcp4-config.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-dhcp4-config.c 2012-06-03 21:00:42.176840799 +0200
|
|
||||||
@@ -132,6 +132,8 @@
|
|
||||||
{
|
|
||||||
NMDHCP4Config *self = NM_DHCP4_CONFIG (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_OPTIONS:
|
|
||||||
g_value_set_boxed (value, nm_dhcp4_config_get_options (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-dhcp6-config.c NetworkManager/libnm-glib/nm-dhcp6-config.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-dhcp6-config.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-dhcp6-config.c 2012-06-03 21:00:42.176840799 +0200
|
|
||||||
@@ -132,6 +132,8 @@
|
|
||||||
{
|
|
||||||
NMDHCP6Config *self = NM_DHCP6_CONFIG (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_OPTIONS:
|
|
||||||
g_value_set_boxed (value, nm_dhcp6_config_get_options (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-ip4-config.c NetworkManager/libnm-glib/nm-ip4-config.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-ip4-config.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-ip4-config.c 2012-06-03 21:00:42.177840815 +0200
|
|
||||||
@@ -187,6 +187,8 @@
|
|
||||||
NMIP4Config *self = NM_IP4_CONFIG (object);
|
|
||||||
NMIP4ConfigPrivate *priv = NM_IP4_CONFIG_GET_PRIVATE (self);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_ADDRESSES:
|
|
||||||
nm_utils_ip4_addresses_to_gvalue (priv->addresses, value);
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-ip6-config.c NetworkManager/libnm-glib/nm-ip6-config.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-ip6-config.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-ip6-config.c 2012-06-03 21:00:42.177840815 +0200
|
|
||||||
@@ -268,6 +268,8 @@
|
|
||||||
NMIP6Config *self = NM_IP6_CONFIG (object);
|
|
||||||
NMIP6ConfigPrivate *priv = NM_IP6_CONFIG_GET_PRIVATE (self);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_ADDRESSES:
|
|
||||||
nm_utils_ip6_addresses_to_gvalue (priv->addresses, value);
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-remote-settings.c NetworkManager/libnm-glib/nm-remote-settings.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-remote-settings.c 2012-03-21 18:31:38.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-remote-settings.c 2012-06-03 21:00:42.177840815 +0200
|
|
||||||
@@ -109,7 +109,7 @@
|
|
||||||
_nm_remote_settings_ensure_inited (NMRemoteSettings *self)
|
|
||||||
{
|
|
||||||
NMRemoteSettingsPrivate *priv = NM_REMOTE_SETTINGS_GET_PRIVATE (self);
|
|
||||||
- GError *error;
|
|
||||||
+ GError *error = NULL;
|
|
||||||
|
|
||||||
if (!priv->inited) {
|
|
||||||
if (!g_initable_init (G_INITABLE (self), NULL, &error)) {
|
|
||||||
@@ -1061,6 +1061,8 @@
|
|
||||||
{
|
|
||||||
NMRemoteSettingsPrivate *priv = NM_REMOTE_SETTINGS_GET_PRIVATE (object);
|
|
||||||
|
|
||||||
+ _nm_remote_settings_ensure_inited (NM_REMOTE_SETTINGS (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_BUS:
|
|
||||||
g_value_set_boxed (value, priv->bus);
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-vpn-connection.c NetworkManager/libnm-glib/nm-vpn-connection.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-vpn-connection.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-vpn-connection.c 2012-06-03 21:00:42.177840815 +0200
|
|
||||||
@@ -211,6 +211,8 @@
|
|
||||||
{
|
|
||||||
NMVPNConnection *self = NM_VPN_CONNECTION (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_VPN_STATE:
|
|
||||||
g_value_set_uint (value, nm_vpn_connection_get_vpn_state (self));
|
|
||||||
diff -Naur NetworkManager.orig/libnm-glib/nm-wimax-nsp.c NetworkManager/libnm-glib/nm-wimax-nsp.c
|
|
||||||
--- NetworkManager.orig/libnm-glib/nm-wimax-nsp.c 2012-02-27 16:57:16.000000000 +0100
|
|
||||||
+++ NetworkManager/libnm-glib/nm-wimax-nsp.c 2012-06-03 21:00:42.177840815 +0200
|
|
||||||
@@ -247,6 +247,8 @@
|
|
||||||
{
|
|
||||||
NMWimaxNsp *nsp = NM_WIMAX_NSP (object);
|
|
||||||
|
|
||||||
+ _nm_object_ensure_inited (NM_OBJECT (object));
|
|
||||||
+
|
|
||||||
switch (prop_id) {
|
|
||||||
case PROP_NAME:
|
|
||||||
g_value_set_string (value, nm_wimax_nsp_get_name (nsp));
|
|
||||||
diff -Naur NetworkManager.orig/src/ppp-manager/nm-ppp-manager.c NetworkManager/src/ppp-manager/nm-ppp-manager.c
|
|
||||||
--- NetworkManager.orig/src/ppp-manager/nm-ppp-manager.c 2012-03-20 22:13:41.000000000 +0100
|
|
||||||
+++ NetworkManager/src/ppp-manager/nm-ppp-manager.c 2012-06-03 21:01:35.545685909 +0200
|
|
||||||
@@ -304,18 +304,20 @@
|
|
||||||
{
|
|
||||||
NMPPPManager *manager = NM_PPP_MANAGER (user_data);
|
|
||||||
NMPPPManagerPrivate *priv = NM_PPP_MANAGER_GET_PRIVATE (manager);
|
|
||||||
- struct ifpppstatsreq req;
|
|
||||||
+ struct ifreq req;
|
|
||||||
+ struct ppp_stats stats;
|
|
||||||
|
|
||||||
memset (&req, 0, sizeof (req));
|
|
||||||
- req.stats_ptr = (caddr_t) &req.stats;
|
|
||||||
+ memset (&stats, 0, sizeof (stats));
|
|
||||||
+ req.ifr_data = (caddr_t) &stats;
|
|
||||||
|
|
||||||
- strncpy (req.ifr__name, priv->ip_iface, sizeof (req.ifr__name));
|
|
||||||
+ strncpy (req.ifr_name, priv->ip_iface, sizeof (req.ifr_name));
|
|
||||||
if (ioctl (priv->monitor_fd, SIOCGPPPSTATS, &req) < 0) {
|
|
||||||
nm_log_warn (LOGD_PPP, "could not read ppp stats: %s", strerror (errno));
|
|
||||||
} else {
|
|
||||||
g_signal_emit (manager, signals[STATS], 0,
|
|
||||||
- req.stats.p.ppp_ibytes,
|
|
||||||
- req.stats.p.ppp_obytes);
|
|
||||||
+ stats.p.ppp_ibytes,
|
|
||||||
+ stats.p.ppp_obytes);
|
|
||||||
}
|
|
||||||
|
|
||||||
return TRUE;
|
|
@ -1,14 +0,0 @@
|
|||||||
diff -Nru NetworkManager-0.9.4.0.orig/src/nm-device-wifi.c NetworkManager-0.9.4.0/src/nm-device-wifi.c
|
|
||||||
--- NetworkManager-0.9.4.0.orig/src/nm-device-wifi.c 2012-03-22 17:49:43.000000000 +0100
|
|
||||||
+++ NetworkManager-0.9.4.0/src/nm-device-wifi.c 2012-05-03 12:26:47.861700288 +0200
|
|
||||||
@@ -2426,8 +2426,8 @@
|
|
||||||
|
|
||||||
priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
|
|
||||||
|
|
||||||
- /* Set up a timeout on the connection attempt to fail it after 25 seconds */
|
|
||||||
- id = g_timeout_add_seconds (25, supplicant_connection_timeout_cb, self);
|
|
||||||
+ /* Set up a timeout on the connection attempt to fail it after 90 seconds */
|
|
||||||
+ id = g_timeout_add_seconds (90, supplicant_connection_timeout_cb, self);
|
|
||||||
if (id == 0) {
|
|
||||||
nm_log_err (LOGD_DEVICE | LOGD_WIFI,
|
|
||||||
"Activation (%s/wireless): couldn't start supplicant "
|
|
8
NetworkManager-connectivity-openmamba.conf
Normal file
8
NetworkManager-connectivity-openmamba.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Enable connectivity checking for NetworkManager.
|
||||||
|
# See `man NetworkManager.conf`.
|
||||||
|
#
|
||||||
|
# Note that connectivity checking works badly with rp_filter set to
|
||||||
|
# strict. Check "/proc/sys/net/ipv4/conf/*/rp_filter".
|
||||||
|
[connectivity]
|
||||||
|
enabled=true
|
||||||
|
uri=http://openmamba.org/static/hotspot.txt
|
@ -1,65 +1,57 @@
|
|||||||
%define majver %(echo %version | cut -d. -f 1-2)
|
%define majver %(echo %version | cut -d. -f 1-2)
|
||||||
|
%define pppdver %(rpm -q --queryformat '%%{version}\\n' ppp | head -n1)
|
||||||
Name: NetworkManager
|
Name: NetworkManager
|
||||||
Version: 0.9.10.0
|
Version: 1.52.0
|
||||||
Release: 2mamba
|
Release: 1mamba
|
||||||
Summary: A hardware level network management tool integrated with D-Bus
|
Summary: A hardware level network management tool integrated with D-Bus
|
||||||
Group: System/Kernel and Hardware
|
Group: System/Kernel and Hardware
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://wiki.gnome.org/Projects/NetworkManager
|
URL: https://networkmanager.dev/
|
||||||
Source: http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/%{majver}/%{name}-%{version}.tar.xz
|
Source: https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git/%{version}/%{name}-%{version}.tar.bz2
|
||||||
Source1: NetworkManager-0.8.2-polkit-localauthority.patch
|
Source1: NetworkManager-0.8.2-polkit-localauthority.patch
|
||||||
# From svn:
|
Source2: NetworkManager-connectivity-openmamba.conf
|
||||||
# svn co svn://svn.gnome.org/svn/NetworkManager/trunk NetworkManager
|
|
||||||
Patch0: %{name}-0.8.2-initscript.patch
|
|
||||||
Patch7: %{name}-0.9.4.0-wpa_supplicant_longer_timeout.patch
|
|
||||||
Patch12: %{name}-0.9.4.0-upstream-fixes-2.patch
|
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: ModemManager-devel
|
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libdbus-devel
|
BuildRequires: libaudit-devel
|
||||||
BuildRequires: libdbus-glib-devel
|
BuildRequires: libbluetooth-devel
|
||||||
BuildRequires: libdw-devel
|
BuildRequires: libcurl-devel
|
||||||
BuildRequires: libffi-devel
|
BuildRequires: libgcc
|
||||||
BuildRequires: libgcrypt-devel
|
|
||||||
BuildRequires: libglib-devel
|
BuildRequires: libglib-devel
|
||||||
BuildRequires: libgpg-error-devel
|
BuildRequires: libjansson-devel
|
||||||
BuildRequires: liblzma-devel
|
BuildRequires: libmm-devel
|
||||||
BuildRequires: libndp-devel
|
BuildRequires: libndp-devel
|
||||||
BuildRequires: libnewt-devel
|
BuildRequires: libnewt-devel
|
||||||
BuildRequires: libnl-devel
|
|
||||||
BuildRequires: libnspr-devel
|
BuildRequires: libnspr-devel
|
||||||
BuildRequires: libnss-devel
|
BuildRequires: libnss-devel
|
||||||
BuildRequires: libpolkit-devel
|
BuildRequires: libpsl-devel
|
||||||
BuildRequires: libreadline-devel
|
BuildRequires: libreadline-devel
|
||||||
BuildRequires: libselinux-devel
|
BuildRequires: libselinux-devel
|
||||||
BuildRequires: libsoup-devel
|
|
||||||
BuildRequires: libsqlite-devel
|
|
||||||
BuildRequires: libsystemd-devel
|
BuildRequires: libsystemd-devel
|
||||||
BuildRequires: libteam-devel
|
BuildRequires: libteam-devel
|
||||||
BuildRequires: libtermcap-devel
|
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
BuildRequires: libuuid-devel
|
|
||||||
BuildRequires: libxml2-devel
|
|
||||||
BuildRequires: libz-devel
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: libsodium-devel >= 1.0.8-1mamba
|
||||||
BuildRequires: gettext-devel
|
BuildRequires: gettext-devel
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: dhcdbd
|
BuildRequires: dhcdbd
|
||||||
BuildRequires: dhcp-client
|
BuildRequires: dhcp-client
|
||||||
BuildRequires: libiw-devel
|
BuildRequires: libiw-devel
|
||||||
BuildRequires: ppp-devel
|
BuildRequires: ppp-devel
|
||||||
|
BuildRequires: libpsl-devel
|
||||||
|
BuildRequires: pygobject-py3
|
||||||
Requires: iproute >= 2.6.11
|
Requires: iproute >= 2.6.11
|
||||||
Requires: wpa_supplicant >= 0.7.3-3mamba
|
Requires: wpa_supplicant >= 0.7.3-3mamba
|
||||||
Requires: ppp >= 2.4.5-5mamba
|
Requires: ppp >= 2.4.5-5mamba
|
||||||
Requires: dhcpclient
|
Requires: dhcpclient
|
||||||
|
Requires: dnsmasq
|
||||||
Requires: libnm = %{?epoch:%epoch:}%{version}-%{release}
|
Requires: libnm = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
Requires(post):dbus
|
Requires(post):dbus
|
||||||
Requires(post):systemd-core
|
Requires(post):systemd-core
|
||||||
Conflicts: wicd
|
Conflicts: wicd
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
%systemd_requires
|
||||||
|
|
||||||
%description
|
%description
|
||||||
NetworkManager is a hardware level network management tool integrated with the D-Bus subsystem.
|
NetworkManager is a hardware level network management tool integrated with the D-Bus subsystem.
|
||||||
@ -76,12 +68,12 @@ This package contains the shared libraries.
|
|||||||
Summary: Devel package for %{name}
|
Summary: Devel package for %{name}
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: libnm = %{?epoch:%epoch:}%{version}-%{release}
|
Requires: libnm = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
Obsoletes: NetworkManager-devel
|
|
||||||
Provides: NetworkManager-devel
|
Provides: NetworkManager-devel
|
||||||
|
Obsoletes: NetworkManager-devel < 1.30.4
|
||||||
|
|
||||||
%description -n libnm-devel
|
%description -n libnm-devel
|
||||||
NetworkManager is a hardware level network management tool integrated with the D-Bus subsystem.
|
NetworkManager is a hardware level network management tool integrated with the D-Bus subsystem.
|
||||||
This package contains static libraries and header files need for development.
|
This package contains static libraries and header files needed for development.
|
||||||
|
|
||||||
%package apidocs
|
%package apidocs
|
||||||
Group: Documentation
|
Group: Documentation
|
||||||
@ -92,95 +84,109 @@ Requires: gtk-doc
|
|||||||
%description apidocs
|
%description apidocs
|
||||||
This package includes the %{name} API documentation.
|
This package includes the %{name} API documentation.
|
||||||
|
|
||||||
%debug_package
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
#-D -T
|
||||||
#%patch7 -p1
|
|
||||||
#%patch12 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
#:<< _EOF
|
||||||
--with-tests \
|
%meson \
|
||||||
--enable-doc \
|
--libexecdir %{_prefix}/libexec \
|
||||||
--enable-gtk-doc \
|
-D udev_dir=%{_prefix}/lib/udev \
|
||||||
--enable-ifcfg-rh \
|
-D tests=yes \
|
||||||
--with-systemdsystemunitdir=`pkg-config systemd --variable=systemdsystemunitdir` \
|
-D docs=true \
|
||||||
--with-session-tracking=systemd \
|
-D ifcfg_rh=true \
|
||||||
--with-modem-manager-1 \
|
-D systemdsystemunitdir=%{_unitdir} \
|
||||||
--enable-bluez4 \
|
-D session_tracking=systemd \
|
||||||
--enable-teamdctl \
|
-D session_tracking_consolekit=false \
|
||||||
--enable-polkit \
|
-D modem_manager=true \
|
||||||
--enable-modify-system \
|
-D bluez5_dun=true \
|
||||||
--enable-concheck \
|
-D teamdctl=true \
|
||||||
LIBS="-ltermcap"
|
-D polkit=true \
|
||||||
|
-D modify_system=true \
|
||||||
|
-D concheck=true \
|
||||||
|
-D wifi=true \
|
||||||
|
-D suspend_resume=systemd \
|
||||||
|
-D iwd=true \
|
||||||
|
-D config_plugins_default=keyfile \
|
||||||
|
-D vapi=true \
|
||||||
|
-D more_asserts=no \
|
||||||
|
-D more_logging=false \
|
||||||
|
-D qt=false \
|
||||||
|
-D pppd=%{_sbindir}/pppd \
|
||||||
|
-D pppd_plugin_dir=%{_libdir}/pppd/%{pppdver}
|
||||||
|
|
||||||
# --enable-wimax \
|
%meson_build
|
||||||
# --with-distro=redhat \
|
|
||||||
|
|
||||||
%make
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
%makeinstall
|
%meson_install
|
||||||
|
|
||||||
install -m0755 test/.libs/nm-online %{buildroot}%{_bindir}/nm-online
|
#install -m0755 test/.libs/nm-online %{buildroot}%{_bindir}/nm-online
|
||||||
install -D -m0644 %{SOURCE1} \
|
install -D -m0644 %{SOURCE1} \
|
||||||
%{buildroot}%{_sysconfdir}/polkit-1/localauthority/50-local.d/10-org-freedesktop-network-manager-settings.pkla
|
%{buildroot}%{_sysconfdir}/polkit-1/localauthority/50-local.d/10-org-freedesktop-network-manager-settings.pkla
|
||||||
rm -f %{buildroot}%{_libdir}/libnm-*.a
|
rm -f %{buildroot}%{_libdir}/libnm-*.a
|
||||||
|
|
||||||
install -d -m0755 %{buildroot}%{_sysconfdir}/NetworkManager/VPN
|
# Install hotspot connectivity check
|
||||||
install -d -m0755 %{buildroot}%{_sysconfdir}/NetworkManager/system-connections
|
install -D -m0644 %{SOURCE2} \
|
||||||
install -D -m0755 initscript/RedHat/NetworkManager %{buildroot}%{_initrddir}/NetworkManager
|
%{buildroot}%{_sysconfdir}/NetworkManager/conf.d/20-connectivity-openmamba.conf
|
||||||
|
|
||||||
%{find_lang} %{name}
|
%{find_lang} %{name}
|
||||||
|
|
||||||
cat > %{buildroot}%{_sysconfdir}/NetworkManager/NetworkManager.conf << _EOF
|
cat > %{buildroot}%{_sysconfdir}/NetworkManager/NetworkManager.conf << _EOF
|
||||||
[main]
|
[main]
|
||||||
plugins=ifcfg-rh,keyfile
|
plugins=keyfile,ifcfg-rh
|
||||||
_EOF
|
_EOF
|
||||||
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
if [ $1 -gt 1 ]; then
|
||||||
|
# Switch to keyfile as default, ifcfg-rh kept for legacy
|
||||||
|
sed -i "s|plugins=ifcfg-rh,keyfile|plugins=keyfile,ifcfg-rh|" %{_sysconfdir}/NetworkManager/NetworkManager.conf
|
||||||
|
fi
|
||||||
if [ $1 -ge 1 ]; then
|
if [ $1 -ge 1 ]; then
|
||||||
sed -i "s|^plugins=keyfile$|plugins=ifcfg-rh,keyfile|" %{_sysconfdir}/NetworkManager/NetworkManager.conf
|
# clean old sysv broken links
|
||||||
|
find /etc/rc[0-6].d/ -type l -xtype l -exec rm -f {} \;
|
||||||
|
sed -i "s|^plugins=keyfile$|plugins=keyfile,ifcfg-rh|" %{_sysconfdir}/NetworkManager/NetworkManager.conf
|
||||||
systemctl -q enable NetworkManager
|
systemctl -q enable NetworkManager
|
||||||
systemctl -q enable NetworkManager-dispatcher
|
systemctl -q enable NetworkManager-dispatcher
|
||||||
systemctl -q daemon-reload
|
systemctl -q daemon-reload
|
||||||
fi
|
fi
|
||||||
if [ $1 -eq 1 ]; then
|
if [ $1 -eq 1 ]; then
|
||||||
# new install
|
# new install
|
||||||
systemctl -q enable NetworkManager
|
|
||||||
systemctl -q daemon-reload
|
|
||||||
systemctl -q start NetworkManager
|
systemctl -q start NetworkManager
|
||||||
/sbin/chkconfig --add NetworkManager
|
|
||||||
fi
|
fi
|
||||||
exit 0
|
:
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
# erase
|
# erase
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
if [ $1 -eq 0 ]; then
|
if [ $1 -eq 0 ]; then
|
||||||
|
systemctl -q stop NetworkManager-dispatcher
|
||||||
systemctl -q stop NetworkManager
|
systemctl -q stop NetworkManager
|
||||||
systemctl -q disable NetworkManager
|
systemctl -q disable NetworkManager
|
||||||
|
systemctl -q disable NetworkManager-dispatcher
|
||||||
fi
|
fi
|
||||||
exit 0
|
:
|
||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_sysconfdir}/dbus-1/system.d/*.conf
|
|
||||||
%{_sysconfdir}/polkit-1/localauthority/50-local.d/10-org-freedesktop-network-manager-settings.pkla
|
%{_sysconfdir}/polkit-1/localauthority/50-local.d/10-org-freedesktop-network-manager-settings.pkla
|
||||||
%dir %{_sysconfdir}/NetworkManager
|
%dir %{_sysconfdir}/NetworkManager
|
||||||
%config(noreplace) %{_sysconfdir}/NetworkManager/NetworkManager.conf
|
%config(noreplace) %{_sysconfdir}/NetworkManager/NetworkManager.conf
|
||||||
|
%dir %{_sysconfdir}/NetworkManager/conf.d
|
||||||
|
%config(noreplace) %{_sysconfdir}/NetworkManager/conf.d/20-connectivity-openmamba.conf
|
||||||
%dir %{_sysconfdir}/NetworkManager/dispatcher.d
|
%dir %{_sysconfdir}/NetworkManager/dispatcher.d
|
||||||
%dir %{_sysconfdir}/NetworkManager/VPN
|
%dir %{_sysconfdir}/NetworkManager/dispatcher.d/*.d
|
||||||
|
%dir %{_sysconfdir}/NetworkManager/dnsmasq-shared.d
|
||||||
|
%dir %{_sysconfdir}/NetworkManager/dnsmasq.d
|
||||||
%dir %{_sysconfdir}/NetworkManager/system-connections
|
%dir %{_sysconfdir}/NetworkManager/system-connections
|
||||||
%{_initrddir}/NetworkManager
|
#%dir %{_sysconfdir}/NetworkManager/VPN
|
||||||
|
%dir %{_sysconfdir}/sysconfig/network-scripts
|
||||||
%{_sbindir}/NetworkManager
|
%{_sbindir}/NetworkManager
|
||||||
%{_bindir}/nmcli
|
%{_bindir}/nmcli
|
||||||
%{_bindir}/nmtui
|
%{_bindir}/nmtui
|
||||||
@ -188,84 +194,346 @@ exit 0
|
|||||||
%{_bindir}/nmtui-edit
|
%{_bindir}/nmtui-edit
|
||||||
%{_bindir}/nmtui-hostname
|
%{_bindir}/nmtui-hostname
|
||||||
%{_bindir}/nm-online
|
%{_bindir}/nm-online
|
||||||
%{_libdir}/pppd/*/nm-pppd-plugin.la
|
%{_udevrulesdir}/*.rules
|
||||||
%{_libdir}/pppd/*/nm-pppd-plugin.so
|
%{_prefix}/lib/firewalld/zones/nm-shared.xml
|
||||||
/lib/udev/rules.d/77-nm-olpc-mesh.rules
|
%{_prefix}/libexec/nm-*
|
||||||
/lib/systemd/system/NetworkManager.service
|
%dir %{_prefix}/lib/NetworkManager
|
||||||
/lib/systemd/system/NetworkManager-dispatcher.service
|
%dir %{_prefix}/lib/NetworkManager/dispatcher.d
|
||||||
/lib/systemd/system/NetworkManager-wait-online.service
|
%{_prefix}/lib/NetworkManager/dispatcher.d/*
|
||||||
/lib/systemd/system/network-online.target.wants/NetworkManager-wait-online.service
|
%{_unitdir}/NetworkManager.service
|
||||||
%{_libexecdir}/nm-avahi-autoipd.action
|
%{_unitdir}/NetworkManager-dispatcher.service
|
||||||
%{_libexecdir}/nm-dhcp-helper
|
%{_unitdir}/NetworkManager-wait-online.service
|
||||||
%{_libexecdir}/nm-dispatcher
|
%{_unitdir}/nm-cloud-setup.service
|
||||||
|
%{_unitdir}/nm-cloud-setup.timer
|
||||||
|
%{_unitdir}/nm-priv-helper.service
|
||||||
|
%{_unitdir}/NetworkManager.service.d/NetworkManager-ovs.conf
|
||||||
|
%{_datadir}/dbus-1/interfaces/org.freedesktop.NetworkManager*.xml
|
||||||
|
%{_datadir}/dbus-1/system.d/nm-*.conf
|
||||||
|
%{_datadir}/dbus-1/system.d/org.freedesktop.NetworkManager.conf
|
||||||
|
%{_datadir}/dbus-1/system-services/org.freedesktop.nm*.service
|
||||||
%{_datadir}/bash-completion/completions/nmcli
|
%{_datadir}/bash-completion/completions/nmcli
|
||||||
%{_datadir}/polkit-1/actions/org.freedesktop.NetworkManager.policy
|
%{_datadir}/polkit-1/actions/org.freedesktop.NetworkManager.policy
|
||||||
%{_datadir}/dbus-1/system-services/org.freedesktop.NetworkManager.service
|
|
||||||
%{_datadir}/dbus-1/system-services/org.freedesktop.nm_dispatcher.service
|
|
||||||
#%{_libexecdir}/nm-crash-logger
|
|
||||||
#%{_datadir}/NetworkManager/gdb-cmd
|
|
||||||
/var/run/NetworkManager
|
|
||||||
%{_mandir}/man1/nm-online.1.*
|
%{_mandir}/man1/nm-online.1.*
|
||||||
#%{_mandir}/man1/nm-tool.1*
|
|
||||||
%{_mandir}/man1/nmcli.1*
|
%{_mandir}/man1/nmcli.1*
|
||||||
|
%{_mandir}/man1/nmtui*.1*
|
||||||
%{_mandir}/man5/NetworkManager.conf.5*
|
%{_mandir}/man5/NetworkManager.conf.5*
|
||||||
%{_mandir}/man5/nm-settings.5*
|
%{_mandir}/man5/nm-settings*.5*
|
||||||
%{_mandir}/man5/nm-system-settings.conf.5*
|
%{_mandir}/man5/nm-system-settings.conf.5*
|
||||||
%{_mandir}/man5/nmcli-examples.5*
|
%{_mandir}/man7/nmcli-examples.7*
|
||||||
%{_mandir}/man8/NetworkManager.8*
|
%{_mandir}/man7/nm-openvswitch.7*
|
||||||
|
%{_mandir}/man8/NetworkManager*.8*
|
||||||
|
%{_mandir}/man8/nm-initrd-generator.8*
|
||||||
|
%{_mandir}/man8/nm-cloud-setup.8*
|
||||||
|
|
||||||
%files -n libnm
|
%files -n libnm
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libnm-util.so.*
|
%{_libdir}/libnm.so.*
|
||||||
%{_libdir}/libnm-glib-vpn.so.*
|
|
||||||
%{_libdir}/libnm-glib.so.*
|
|
||||||
%dir %{_libdir}/NetworkManager
|
%dir %{_libdir}/NetworkManager
|
||||||
%{_libdir}/NetworkManager/libnm-settings-plugin-ifcfg-rh.la
|
%{_libdir}/NetworkManager/%{version}/libnm-device-plugin-*.so
|
||||||
%{_libdir}/NetworkManager/libnm-settings-plugin-ifcfg-rh.so
|
%{_libdir}/NetworkManager/%{version}/libnm-settings-plugin-*.so
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-adsl.la
|
%{_libdir}/NetworkManager/%{version}/libnm-ppp-plugin.so
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-adsl.so
|
%{_libdir}/NetworkManager/%{version}/libnm-wwan.so
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-bluetooth.la
|
%{_libdir}/pppd/*/nm-pppd-plugin.so
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-bluetooth.so
|
%{_libdir}/girepository-1.0/NM-1.0.typelib
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-wifi.la
|
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-wifi.so
|
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-wwan.la
|
|
||||||
%{_libdir}/NetworkManager/libnm-device-plugin-wwan.so
|
|
||||||
%{_libdir}/NetworkManager/libnm-wwan.la
|
|
||||||
%{_libdir}/NetworkManager/libnm-wwan.so
|
|
||||||
%{_libdir}/girepository-1.0/NMClient-1.0.typelib
|
|
||||||
%{_libdir}/girepository-1.0/NetworkManager-1.0.typelib
|
|
||||||
%doc AUTHORS COPYING
|
%doc AUTHORS COPYING
|
||||||
|
|
||||||
%files -n libnm-devel
|
%files -n libnm-devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/*.la
|
%dir %{_includedir}/libnm
|
||||||
%{_libdir}/*.so
|
%{_includedir}/libnm/*.h
|
||||||
%dir %{_includedir}/NetworkManager
|
%{_libdir}/libnm.so
|
||||||
%{_includedir}/NetworkManager/*.h
|
%{_datadir}/gir-1.0/NM-1.0.gir
|
||||||
|
%{_datadir}/vala/vapi/libnm.deps
|
||||||
|
%{_datadir}/vala/vapi/libnm.vapi
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%{_includedir}/libnm-glib/libnm_glib.h
|
%doc ChangeLog NEWS README.md TODO
|
||||||
%{_includedir}/libnm-glib/nm-*.h
|
|
||||||
%{_datadir}/gir-1.0/NMClient-1.0.gir
|
|
||||||
%{_datadir}/gir-1.0/NetworkManager-1.0.gir
|
|
||||||
%{_datadir}/vala/vapi/libnm-glib.deps
|
|
||||||
%{_datadir}/vala/vapi/libnm-glib.vapi
|
|
||||||
%{_datadir}/vala/vapi/libnm-util.deps
|
|
||||||
%{_datadir}/vala/vapi/libnm-util.vapi
|
|
||||||
%doc ChangeLog NEWS README TODO
|
|
||||||
|
|
||||||
%files apidocs
|
%files apidocs
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%dir %{_datadir}/gtk-doc/html/NetworkManager
|
%dir %{_datadir}/gtk-doc/html/NetworkManager
|
||||||
%{_datadir}/gtk-doc/html/NetworkManager/*
|
%{_datadir}/gtk-doc/html/NetworkManager/*
|
||||||
%dir %{_datadir}/gtk-doc/html/libnm-glib
|
%dir %{_datadir}/gtk-doc/html/libnm
|
||||||
%{_datadir}/gtk-doc/html/libnm-glib/*
|
%{_datadir}/gtk-doc/html/libnm/*
|
||||||
%dir %{_datadir}/gtk-doc/html/libnm-util
|
|
||||||
%{_datadir}/gtk-doc/html/libnm-util/*
|
|
||||||
%dir %{_datadir}/doc/NetworkManager
|
%dir %{_datadir}/doc/NetworkManager
|
||||||
%dir %{_datadir}/doc/NetworkManager/examples
|
%dir %{_datadir}/doc/NetworkManager/examples
|
||||||
%{_datadir}/doc/NetworkManager/examples/server.conf
|
%{_datadir}/doc/NetworkManager/examples/server.conf
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Mar 01 2025 Automatic Build System <autodist@openmamba.org> 1.52.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Feb 28 2025 Automatic Build System <autodist@openmamba.org> 1.50.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jan 21 2025 Automatic Build System <autodist@openmamba.org> 1.50.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Dec 28 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.50.1-1mamba
|
||||||
|
- update to 1.50.1
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Automatic Build System <autodist@openmamba.org> 1.50.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Aug 26 2024 Automatic Build System <autodist@openmamba.org> 1.48.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Aug 10 2024 Automatic Build System <autodist@openmamba.org> 1.48.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Jul 26 2024 Automatic Build System <autodist@openmamba.org> 1.48.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jul 06 2024 Automatic Build System <autodist@openmamba.org> 1.48.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Automatic Build System <autodist@openmamba.org> 1.48.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jun 01 2024 Automatic Build System <autodist@openmamba.org> 1.48.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed May 15 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.46.0-4mamba
|
||||||
|
- update hotspot connectivity check from https to a http url
|
||||||
|
|
||||||
|
* Tue May 14 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.46.0-3mamba
|
||||||
|
- install hotspot connectivity check conf.d file for openmamba
|
||||||
|
|
||||||
|
* Thu Mar 07 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.46.0-2mamba
|
||||||
|
- fix ipv4 dhcp disabling ebpf (see https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/1485#note_2297552 )
|
||||||
|
|
||||||
|
* Thu Feb 22 2024 Automatic Build System <autodist@openmamba.org> 1.46.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Nov 01 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.44.2-1mamba
|
||||||
|
- update to 1.44.2
|
||||||
|
|
||||||
|
* Tue Aug 15 2023 Automatic Build System <autodist@mambasoft.it> 1.44.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jun 29 2023 Automatic Build System <autodist@mambasoft.it> 1.42.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Apr 21 2023 Automatic Build System <autodist@mambasoft.it> 1.42.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Mar 09 2023 Automatic Build System <autodist@mambasoft.it> 1.42.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Feb 23 2023 Automatic Build System <autodist@mambasoft.it> 1.42.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Feb 10 2023 Automatic Build System <autodist@mambasoft.it> 1.42.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Jan 27 2023 Automatic Build System <autodist@mambasoft.it> 1.40.12-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.40.10-2mamba
|
||||||
|
- set configuration backends from ifcfg_rh,keyfile to keyfile,ifcfg_rh
|
||||||
|
- install some missing empty directories in /etc/NetworkManager and /etc/sysconfig
|
||||||
|
|
||||||
|
* Wed Jan 11 2023 Automatic Build System <autodist@mambasoft.it> 1.40.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Dec 17 2022 Automatic Build System <autodist@mambasoft.it> 1.40.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Dec 01 2022 Automatic Build System <autodist@mambasoft.it> 1.40.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Nov 23 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 1.40.4-2mamba
|
||||||
|
- x86_64, aarch64: force setting libexecdir as /usr/libexec to fix compatibility with dracut module
|
||||||
|
|
||||||
|
* Sat Nov 19 2022 Automatic Build System <autodist@mambasoft.it> 1.40.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Oct 19 2022 Automatic Build System <autodist@mambasoft.it> 1.40.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Aug 27 2022 Automatic Build System <autodist@mambasoft.it> 1.40.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Aug 12 2022 Automatic Build System <autodist@mambasoft.it> 1.38.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Jun 17 2022 Automatic Build System <autodist@mambasoft.it> 1.38.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat May 14 2022 Automatic Build System <autodist@mambasoft.it> 1.38.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Mar 23 2022 Automatic Build System <autodist@mambasoft.it> 1.36.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Mar 07 2022 Automatic Build System <autodist@mambasoft.it> 1.36.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Feb 26 2022 Automatic Build System <autodist@mambasoft.it> 1.36.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Sep 22 2021 Automatic Build System <autodist@mambasoft.it> 1.32.12-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Aug 20 2021 Automatic Build System <autodist@mambasoft.it> 1.32.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Aug 11 2021 Automatic Build System <autodist@mambasoft.it> 1.32.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jul 29 2021 Automatic Build System <autodist@mambasoft.it> 1.32.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Automatic Build System <autodist@mambasoft.it> 1.32.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jul 01 2021 Automatic Build System <autodist@mambasoft.it> 1.32.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jun 19 2021 Automatic Build System <autodist@mambasoft.it> 1.32.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Apr 22 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.30.4-2mamba
|
||||||
|
- fix udev libdir
|
||||||
|
|
||||||
|
* Tue Apr 20 2021 Automatic Build System <autodist@mambasoft.it> 1.30.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Mar 13 2021 Automatic Build System <autodist@mambasoft.it> 1.30.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Mar 03 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.30.0-2mamba
|
||||||
|
- require dnsmasq required e.g. for hotspot functionality
|
||||||
|
|
||||||
|
* Fri Feb 19 2021 Automatic Build System <autodist@mambasoft.it> 1.30.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Dec 07 2020 Automatic Build System <autodist@mambasoft.it> 1.28.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Oct 15 2020 Automatic Build System <autodist@mambasoft.it> 1.26.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Aug 20 2020 Automatic Build System <autodist@mambasoft.it> 1.26.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jul 14 2020 Automatic Build System <autodist@mambasoft.it> 1.26.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jun 06 2020 Automatic Build System <autodist@mambasoft.it> 1.24.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat May 09 2020 Automatic Build System <autodist@mambasoft.it> 1.24.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Mar 13 2020 Automatic Build System <autodist@mambasoft.it> 1.22.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Feb 19 2020 Automatic Build System <autodist@mambasoft.it> 1.22.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Feb 05 2020 Automatic Build System <autodist@mambasoft.it> 1.22.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Jan 10 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.22.4-1mamba
|
||||||
|
- update to 1.22.4
|
||||||
|
|
||||||
|
* Tue Dec 24 2019 Automatic Build System <autodist@mambasoft.it> 1.22.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Dec 17 2019 Automatic Build System <autodist@mambasoft.it> 1.22.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Nov 25 2019 Automatic Build System <autodist@mambasoft.it> 1.20.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Nov 07 2019 Automatic Build System <autodist@mambasoft.it> 1.20.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 27 2019 Automatic Build System <autodist@mambasoft.it> 1.20.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Automatic Build System <autodist@mambasoft.it> 1.18.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.18.1-3mamba
|
||||||
|
- x86_64: rebuild after rpm fix for _libexecdir
|
||||||
|
|
||||||
|
* Mon Jul 22 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.18.1-2mamba
|
||||||
|
- rebuilt with rpm4 to remove requirement for rpmlib(PartialHardlinkSets) <= 4.0.4-1
|
||||||
|
|
||||||
|
* Sun Apr 21 2019 Automatic Build System <autodist@mambasoft.it> 1.18.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Mar 25 2019 Automatic Build System <autodist@mambasoft.it> 1.16.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Nov 04 2018 Automatic Build System <autodist@mambasoft.it> 1.14.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Sep 14 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.12.2-3mamba
|
||||||
|
- rebuilt with --enable-config-plugin-ibft and --enable-polkit-agent
|
||||||
|
|
||||||
|
* Thu Sep 06 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.12.2-2mamba
|
||||||
|
- rebuilt with --enable-libnm-glib
|
||||||
|
|
||||||
|
* Thu Jul 26 2018 Automatic Build System <autodist@mambasoft.it> 1.12.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Jul 08 2018 Automatic Build System <autodist@mambasoft.it> 1.12.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jun 16 2018 Automatic Build System <autodist@mambasoft.it> 1.10.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri May 11 2018 Automatic Build System <autodist@mambasoft.it> 1.10.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Apr 15 2018 Automatic Build System <autodist@mambasoft.it> 1.10.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Automatic Build System <autodist@mambasoft.it> 1.4.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Aug 25 2016 Automatic Build System <autodist@mambasoft.it> 1.4.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Aug 04 2016 Automatic Build System <autodist@mambasoft.it> 1.2.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jun 07 2016 Automatic Build System <autodist@mambasoft.it> 1.2.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon May 16 2016 Automatic Build System <autodist@mambasoft.it> 1.2.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Apr 02 2016 Automatic Build System <autodist@mambasoft.it> 1.0.12-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Feb 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.10-2mamba
|
||||||
|
- rebuilt by autoport with build requirements: libsodium-devel>=1.0.8-1mamba
|
||||||
|
|
||||||
|
* Thu Dec 24 2015 Automatic Build System <autodist@mambasoft.it> 1.0.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Nov 27 2015 Automatic Build System <autodist@mambasoft.it> 1.0.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Aug 28 2015 Automatic Build System <autodist@mambasoft.it> 1.0.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Aug 02 2015 Automatic Build System <autodist@mambasoft.it> 1.0.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed May 06 2015 Automatic Build System <autodist@mambasoft.it> 1.0.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Dec 28 2014 Automatic Build System <autodist@mambasoft.it> 1.0.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Nov 22 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.9.10.0-3mamba
|
||||||
|
- patch systemd service with After=dbus.service to fix blocking shutdowns
|
||||||
|
- remove sysv initscript
|
||||||
|
|
||||||
* Thu Oct 16 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.9.10.0-2mamba
|
* Thu Oct 16 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.9.10.0-2mamba
|
||||||
- rebuilt with --with-session-tracking=systemd and more new options
|
- rebuilt with --with-session-tracking=systemd and more new options
|
||||||
|
|
||||||
@ -324,7 +592,7 @@ exit 0
|
|||||||
* Tue Jan 22 2013 Automatic Build System <autodist@mambasoft.it> 0.9.7.995-1mamba
|
* Tue Jan 22 2013 Automatic Build System <autodist@mambasoft.it> 0.9.7.995-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Sun Oct 29 2012 Automatic Build System <autodist@mambasoft.it> 0.9.6.4-1mamba
|
* Mon Oct 29 2012 Automatic Build System <autodist@mambasoft.it> 0.9.6.4-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
- source edit: require ppp > 2.4.5-5mamba (with ipv6 support enabled)
|
- source edit: require ppp > 2.4.5-5mamba (with ipv6 support enabled)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user