Kaydet (Commit) 96884eaa authored tarafından Suleyman Poyraz's avatar Suleyman Poyraz

Rename edildi-yeminle allaha emanet calisiyor scom

üst 638ca63c
......@@ -135,8 +135,8 @@ class Call:
class Link:
def __init__(self, version="2", socket=None, alternate=False):
self.version = str(version)
self.address = "tr.org.pardus.comar"
self.interface = "tr.org.pardus.comar"
self.address = "tr.org.sulin.scom"
self.interface = "tr.org.sulin.scom"
self.socket = socket
# Auto-enable agent, if X session present.
......
......@@ -15,10 +15,10 @@
import os
import subprocess
from pardus import iniutils
from pardus import netutils
from sulin import iniutils
from sulin import netutils
from comar.service import startService, stopService, loadConfig
from scom.service import startService, stopService, loadConfig
NET_PATH = "/etc/network"
NET_STACK = "baselayout"
......
......@@ -23,7 +23,7 @@ import signal
import time
import shlex
from comar.utility import *
from scom.utility import *
# utility functions
......
......@@ -29,7 +29,7 @@ def synchronized(func):
"""
class Handler:
def handler(self, *args, **kwargs):
lock = FileLock("/var/lock/subsys/%s.comar" % script())
lock = FileLock("/var/lock/subsys/%s.scom" % script())
lock.lock()
self.myfunc(*args, **kwargs)
lock.unlock()
......
......@@ -16,15 +16,15 @@ import shutil
from distutils.core import setup
from distutils.command.install import install
from comar import __version__ as version
from scom import __version__ as version
distfiles = """
setup.py
comar/*.py
scom/*.py
"""
def make_dist():
distdir = "comar-api-%s" % version
distdir = "scom-api-%s" % version
list = []
for t in distfiles.split():
list.extend(glob.glob(t))
......@@ -39,7 +39,7 @@ def make_dist():
if not os.path.exists(dn):
os.mkdir(dn)
shutil.copy(file_, os.path.join(distdir, file_))
os.popen("tar -czf %s %s" % ("comar-api-" + version + ".tar.gz", distdir))
os.popen("tar -czf %s %s" % ("scom-api-" + version + ".tar.gz", distdir))
shutil.rmtree(distdir)
if "dist" in sys.argv:
......@@ -50,9 +50,9 @@ if "dist" in sys.argv:
class Install(install):
def finalize_options(self):
# NOTE: for Pardus distribution
if os.path.exists("/etc/pardus-release"):
self.install_platlib = '$base/lib/pardus'
self.install_purelib = '$base/lib/pardus'
if os.path.exists("/etc/sulin-release"):
self.install_platlib = '$base/lib/sulin'
self.install_purelib = '$base/lib/sulin'
install.finalize_options(self)
def run(self):
......@@ -60,13 +60,13 @@ class Install(install):
setup(
name = 'comar',
name = 'scom',
version = version,
description = 'COMAR API Functions',
url = 'http://www.pardus.org.tr/projeler/comar',
url = 'http://www.sulin.org.tr/projeler/scom',
license = 'GNU GPL2',
package_dir = { '': '' },
packages = [ 'comar' ],
packages = [ 'scom' ],
cmdclass = {
'install' : Install
}
......
[D-BUS Service]
Name=tr.org.pardus.comar2
Exec=/usr/sbin/comar -i -b tr.org.pardus.comar2
User=root
# Project name
PROJECT (comar)
PROJECT (scom)
# CMake 2.6 required
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
......@@ -11,7 +11,7 @@ FIND_PACKAGE(PkgConfig)
PKG_CHECK_MODULES (DBUS REQUIRED dbus-1)
# Application name
SET (APP_NAME "comar")
SET (APP_NAME "scom")
SET (APP_SUFFIX "3")
# Uncomment this for production releases.
......@@ -58,14 +58,14 @@ INCLUDE_DIRECTORIES (include/
${PYTHON_INCLUDE_DIRS}
${DBUS_INCLUDE_DIRS})
# Compile comar from specified sources
ADD_EXECUTABLE (comar ${SOURCES})
# Compile scom from specified sources
ADD_EXECUTABLE (scom ${SOURCES})
# Link comar to specified libraries
TARGET_LINK_LIBRARIES(comar ${LIBS} )
# Link scom to specified libraries
TARGET_LINK_LIBRARIES(scom ${LIBS} )
# Install comar to /usr/sbin/<app-name>
INSTALL (PROGRAMS comar
# Install scom to /usr/sbin/<app-name>
INSTALL (PROGRAMS scom
DESTINATION /usr/sbin)
# Install Models
......@@ -82,8 +82,8 @@ INSTALL (DIRECTORY
# Install service activation config under /usr/share/dbus-1/system-services/
INSTALL (FILES
config/tr.org.pardus.comar.service
config/tr.org.pardus.comar2.service
config/tr.org.sulin.scom.service
config/tr.org.sulin.scom2.service
DESTINATION /usr/share/dbus-1/system-services/)
# Install polkit policies
......@@ -95,7 +95,7 @@ INSTALL (DIRECTORY
# Install system bus policy under /etc/dbus-1/system.d/
INSTALL (FILES
config/tr.org.pardus.comar.conf
config/tr.org.sulin.scom.conf
DESTINATION /etc/dbus-1/system.d)
# Install hav to /usr/bin/hav
......@@ -103,7 +103,7 @@ INSTALL (PROGRAMS tools/hav.py
DESTINATION /usr/bin
RENAME hav)
# Install hav to /usr/bin/comar2to3
INSTALL (PROGRAMS tools/comar2to3.py
# Install hav to /usr/bin/scom2to3
INSTALL (PROGRAMS tools/scom2to3.py
DESTINATION /usr/bin
RENAME comar2to3)
RENAME scom2to3)
......@@ -18,6 +18,6 @@ Install:
# make install DESTDIR=/
Import Comar 2.0 scripts (optional):
Import Scom 2.0 scripts (optional):
# comar2to3
# scom2to3
......@@ -4,14 +4,14 @@
<busconfig>
<policy user="root">
<allow own="tr.org.pardus.comar"/>
<allow own="tr.org.pardus.comar2"/>
<allow own="tr.org.pardus.comar.updated"/>
<allow own="tr.org.sulin.scom"/>
<allow own="tr.org.sulin.scom2"/>
<allow own="tr.org.sulin.scom.updated"/>
</policy>
<policy context="default">
<allow send_destination="tr.org.pardus.comar"/>
<allow send_destination="tr.org.pardus.comar2"/>
<allow send_destination="tr.org.pardus.comar.updated"/>
<allow send_destination="tr.org.sulin.scom"/>
<allow send_destination="tr.org.sulin.scom2"/>
<allow send_destination="tr.org.sulin.scom.updated"/>
</policy>
</busconfig>
[D-BUS Service]
Name=tr.org.pardus.comar
Exec=/usr/sbin/comar
Name=tr.org.sulin.scom
Exec=/usr/sbin/scom
User=root
[D-BUS Service]
Name=tr.org.sulin.scom2
Exec=/usr/sbin/scom -i -b tr.org.sulin.comar2
User=root
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......@@ -36,11 +36,11 @@
#endif
#ifndef DBUS_SERVICE_NAME
#define DBUS_SERVICE_NAME "tr.org.pardus.comar"
#define DBUS_SERVICE_NAME "tr.org.sulin.scom"
#endif
#ifndef DBUS_INTERFACE_PREFIX
#define DBUS_INTERFACE_PREFIX "tr.org.pardus.comar"
#define DBUS_INTERFACE_PREFIX "tr.org.sulin.scom"
#endif
#ifndef IDLE_TIMEOUT
......@@ -48,19 +48,19 @@
#endif
#ifndef DIR_DATA
#define DIR_DATA "/var/db/comar3"
#define DIR_DATA "/var/db/scom3"
#endif
#ifndef DIR_LOG
#define DIR_LOG "/var/log/comar3"
#define DIR_LOG "/var/log/scom3"
#endif
#ifndef FILE_PID
#define FILE_PID "/var/run/comar3.pid"
#define FILE_PID "/var/run/scom3.pid"
#endif
#ifndef WWW_BUGS
#define WWW_BUGS "http://bugs.pardus.org.tr"
#define WWW_BUGS "http://bugs.sulin.org.tr"
#endif
extern char *config_server_address;
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
......@@ -31,10 +31,10 @@
extern PyObject *py_core;
extern PyObject *PyExc_COMAR_Internal;
extern PyObject *PyExc_COMAR_Invalid;
extern PyObject *PyExc_COMAR_Script;
extern PyObject *PyExc_COMAR_Missing;
extern PyObject *PyExc_SCOM_Internal;
extern PyObject *PyExc_SCOM_Invalid;
extern PyObject *PyExc_SCOM_Script;
extern PyObject *PyExc_SCOM_Missing;
extern PyObject *PyExc_DBus;
extern PyObject *PyExc_PolicyKit;
......
/*
*
* Copyright (c) 2005-2010, TUBITAK/UEKAE
* Copyright (c) 2016-2018, Suleyman POYRAZ (AquilaNipalensis)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
......
<comarModel>
<scomModel>
<interface name="Boot.Loader">
<method name="listSystems" action_id="">
<arg name="systems" type="a{s(sasas)}" direction="out"/>
......@@ -47,4 +47,4 @@
<arg name="changed_item" type="s"/>
</signal>
</interface>
</comarModel>
</scomModel>
<comarModel>
<scomModel>
<interface name="Boot.Modules">
<method name="listAvailable" access_label="get">
<arg name="modules" type="as" direction="out"/>
......@@ -50,4 +50,4 @@
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
</interface>
</comarModel>
</scomModel>
<comarModel>
<scomModel>
<interface name="Core">
<method name="register" action_id="tr.org.pardus.comar.register">
<method name="register" action_id="tr.org.sulin.scom.register">
<arg name="model" type="s" direction="in"/>
<arg name="package" type="s" direction="in"/>
<arg name="script" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="remove" action_id="tr.org.pardus.comar.remove">
<method name="remove" action_id="tr.org.sulin.scom.remove">
<arg name="package" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
......@@ -33,4 +33,4 @@
<arg name="locale" type="s" direction="in"/>
</method>
</interface>
</comarModel>
</scomModel>
<comarModel>
<scomModel>
<interface name="Disk.Manager">
<method name="getDevices" access_label="get">
<arg name="devices" type="as" direction="out"/>
......@@ -52,4 +52,4 @@
</method>
<signal name="changed"/>
</interface>
</comarModel>
</scomModel>
<comarModel>
<scomModel>
<interface name="Net.Link">
<method name="linkInfo" action_id="">
<arg name="info" type="a{ss}" direction="out"/>
......@@ -10,20 +10,20 @@
<arg name="device" type="s" direction="in"/>
<arg name="remotes" type="aa{ss}" direction="out"/>
</method>
<method name="setConnection" action_id="tr.org.pardus.comar.net.link.set">
<method name="setConnection" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="device" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setConnectionMode" action_id="tr.org.pardus.comar.net.link.set">
<method name="setConnectionMode" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="device_mode" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="deleteConnection" action_id="tr.org.pardus.comar.net.link.set">
<method name="deleteConnection" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
</method>
<method name="setAddress" action_id="tr.org.pardus.comar.net.link.set">
<method name="setAddress" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="mode" type="s" direction="in"/>
<arg name="address" type="s" direction="in"/>
......@@ -31,7 +31,7 @@
<arg name="gateway" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setVpn" action_id="tr.org.pardus.comar.net.link.set">
<method name="setVpn" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="domain" type="s" direction="in"/>
<arg name="port" type="s" direction="in"/>
......@@ -42,19 +42,19 @@
<arg name="chipher" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setRemote" action_id="tr.org.pardus.comar.net.link.set">
<method name="setRemote" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="remote" type="s" direction="in"/>
<arg name="apmac" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setNameService" action_id="tr.org.pardus.comar.net.link.set">
<method name="setNameService" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="namemode" type="s" direction="in"/>
<arg name="nameserver" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setAuthentication" action_id="tr.org.pardus.comar.net.link.set">
<method name="setAuthentication" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="authmode" type="s" direction="in"/>
<arg name="user" type="s" direction="in"/>
......@@ -68,11 +68,11 @@
<arg name="private_key_passwd" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setChannel" action_id="tr.org.pardus.comar.net.link.set">
<method name="setChannel" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="chan" type="s" direction="in"/>
</method>
<method name="setState" action_id="tr.org.pardus.comar.net.link.setstate">
<method name="setState" action_id="tr.org.sulin.scom.net.link.setstate">
<arg name="name" type="s" direction="in"/>
<arg name="state" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
......@@ -102,7 +102,7 @@
<arg name="auth_private_key" type="s" direction="out"/>
<arg name="auth_private_key_pass" type="s" direction="out"/>
</method>
<method name="kernelEvent" action_id="tr.org.pardus.comar.net.link.set">
<method name="kernelEvent" action_id="tr.org.sulin.scom.net.link.set">
<arg name="data" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
......@@ -123,7 +123,7 @@
</signal>
</interface>
<interface name="Net.Share">
<method name="checkShare" action_id="tr.org.pardus.comar.net.link.set">
<method name="checkShare" action_id="tr.org.sulin.scom.net.link.set">
<arg name="net_addr" type="s" direction="in"/>
<arg name="net_mode" type="s" direction="in"/>
<arg name="net_mask" type="s" direction="in"/>
......@@ -134,12 +134,12 @@
<method name="getNameServers" action_id="">
<arg name="servers" type="as" direction="out"/>
</method>
<method name="setNameServers" action_id="tr.org.pardus.comar.net.stack.set">
<method name="setNameServers" action_id="tr.org.sulin.scom.net.stack.set">
<arg name="nameservers" type="as" direction="in"/>
<arg name="searchdomain" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="useNameServers" action_id="tr.org.pardus.comar.net.stack.set">
<method name="useNameServers" action_id="tr.org.sulin.scom.net.stack.set">
<arg name="servers" type="as" direction="in"/>
<arg name="domain" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
......@@ -147,20 +147,20 @@
<method name="getHostName" action_id="">
<arg name="hostname" type="s" direction="out"/>
</method>
<method name="setHostName" action_id="tr.org.pardus.comar.net.stack.set">
<method name="setHostName" action_id="tr.org.sulin.scom.net.stack.set">
<arg name="hostname" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
</interface>
<interface name="Net.Filter">
<method name="setRule" action_id="tr.org.pardus.comar.net.filter.set">
<method name="setRule" action_id="tr.org.sulin.scom.net.filter.set">
<arg name="rule" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="getRules" action_id="">
<arg name="rules" type="as" direction="out"/>
</method>
<method name="setProfile" action_id="tr.org.pardus.comar.net.filter.set">
<method name="setProfile" action_id="tr.org.sulin.scom.net.filter.set">
<arg name="profile" type="s" direction="in"/>
<arg name="save_filter" type="s" direction="in"/>
<arg name="save_mangle" type="s" direction="in"/>
......@@ -183,4 +183,4 @@
<arg name="raw" type="s"/>
</signal>
</interface>
</comarModel>
</scomModel>
<comarModel>
<scomModel>
<interface name="Network.Firewall">
<method name="listModules" action_id="">
<arg name="modules" type="as" direction="out"/>
......@@ -17,11 +17,11 @@
<arg name="module" type="s" direction="in"/>
<arg name="state" type="s" direction="out"/>
</method>
<method name="setModuleState" action_id="tr.org.pardus.comar.net.filter.set">
<method name="setModuleState" action_id="tr.org.sulin.scom.net.filter.set">
<arg name="module" type="s" direction="in"/>
<arg name="state" type="s" direction="in"/>
</method>
<method name="setModuleParameters" action_id="tr.org.pardus.comar.net.filter.set">
<method name="setModuleParameters" action_id="tr.org.sulin.scom.net.filter.set">
<arg name="module" type="s" direction="in"/>
<arg name="parameters" type="a{ss}" direction="in"/>
</method>
......@@ -32,7 +32,7 @@
<method name="getState" action_id="">
<arg name="state" type="s" direction="out"/>
</method>
<method name="setState" action_id="tr.org.pardus.comar.net.filter.set">
<method name="setState" action_id="tr.org.sulin.scom.net.filter.set">
<arg name="state" type="s" direction="in"/>
</method>
<signal name="stateChanged">
......@@ -46,4 +46,4 @@
<arg name="module" type="s"/>
</signal>
</interface>
</comarModel>
</scomModel>
<comarModel>
<scomModel>
<interface name="Network.Link">
<method name="linkInfo" action_id="">
<arg name="info" type="a{ss}" direction="out"/>
......@@ -19,12 +19,12 @@
<arg name="method" type="s" direction="in"/>
<arg name="info" type="a(sss)" direction="out"/>
</method>
<method name="setAuthMethod" action_id="tr.org.pardus.comar.net.link.set">
<method name="setAuthMethod" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="method" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setAuthParameters" action_id="tr.org.pardus.comar.net.link.set">
<method name="setAuthParameters" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="key" type="s" direction="in"/>
<arg name="value" type="s" direction="in"/>
......@@ -34,7 +34,7 @@
<arg name="name" type="s" direction="in"/>
<arg name="method" type="s" direction="out"/>
</method>
<method name="getAuthParameters" action_id="tr.org.pardus.comar.net.link.getauth">
<method name="getAuthParameters" action_id="tr.org.sulin.scom.net.link.getauth">
<arg name="name" type="s" direction="in"/>
<arg name="key" type="a{ss}" direction="out"/>
</method>
......@@ -51,7 +51,7 @@
<arg name="device" type="s" direction="in"/>
<arg name="remotes" type="aa{sv}" direction="out"/>
</method>
<method name="setRemote" action_id="tr.org.pardus.comar.net.link.set">
<method name="setRemote" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="remote" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
......@@ -63,20 +63,20 @@
<arg name="name" type="s" direction="in"/>
<arg name="info" type="a{ss}" direction="out"/>
</method>
<method name="setDevice" action_id="tr.org.pardus.comar.net.link.set">
<method name="setDevice" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="device" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setDeviceMode" action_id="tr.org.pardus.comar.net.link.set">
<method name="setDeviceMode" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="mode" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="deleteConnection" action_id="tr.org.pardus.comar.net.link.set">
<method name="deleteConnection" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
</method>
<method name="setAddress" action_id="tr.org.pardus.comar.net.link.set">
<method name="setAddress" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="mode" type="s" direction="in"/>
<arg name="address" type="s" direction="in"/>
......@@ -84,13 +84,13 @@
<arg name="gateway" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setNameService" action_id="tr.org.pardus.comar.net.link.set">
<method name="setNameService" action_id="tr.org.sulin.scom.net.link.set">
<arg name="name" type="s" direction="in"/>
<arg name="namemode" type="s" direction="in"/>
<arg name="nameserver" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setState" action_id="tr.org.pardus.comar.net.link.setstate">
<method name="setState" action_id="tr.org.sulin.scom.net.link.setstate">
<arg name="name" type="s" direction="in"/>
<arg name="state" type="s" direction="in"/>
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
......@@ -123,32 +123,32 @@
<method name="getNameServers" action_id="">
<arg name="servers" type="as" direction="out"/>
</method>