Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
S
scom
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
SulinOS
scom
Commits
b6a8989c
Kaydet (Commit)
b6a8989c
authored
May 20, 2009
tarafından
Bahadır Kandemir
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ifplug starter/stopper. Based on Nihat Ciddi's service script
üst
2f5c1a82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
network.py
api/comar/network.py
+28
-0
No files found.
api/comar/network.py
Dosyayı görüntüle @
b6a8989c
...
...
@@ -16,6 +16,9 @@ import os
import
subprocess
from
pardus
import
iniutils
from
pardus
import
netutils
from
comar.service
import
startService
,
stopService
,
loadConfig
NET_PATH
=
"/etc/network"
NET_STACK
=
"baselayout"
...
...
@@ -122,3 +125,28 @@ def callScript(name, state):
subprocess
.
call
([
path
])
except
:
pass
def
plugCheck
(
device
,
state
,
wireless
=
False
):
# Do nothing if ifplugd is missing
if
not
os
.
path
.
exists
(
"/usr/sbin/ifplugd"
):
return
if
state
==
"up"
:
# Do nothing if device is missing
if
not
netutils
.
IF
(
device
):
return
# Load service configuration
config
=
loadConfig
(
"/etc/conf.d/ifplugd"
)
# Get arguments
if
wireless
:
args
=
config
.
get
(
"IFPLUGD_WLAN_ARGS"
,
""
)
else
:
args
=
config
.
get
(
"IFPLUGD_ARGS"
,
""
)
# Start service
startService
(
command
=
"/usr/sbin/ifplugd"
,
args
=
"
%
s -i
%
s"
%
(
args
,
device
),
pidfile
=
"/var/run/ifplugd.
%
s.pid"
%
device
,
detach
=
True
,
donotify
=
False
)
else
:
# Stop service
stopService
(
pidfile
=
"/var/run/ifplugd.
%
s.pid"
%
device
,
donotify
=
False
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment