Changeset 2983
- Timestamp:
- 06/19/05 05:04:01 (4 years ago)
- Files:
-
- WiredServer/trunk/StartupItems/Wired/Wired (modified) (2 diffs)
- WiredServer/trunk/WCConfigController.m (modified) (1 diff)
- WiredServer/trunk/WiredCommon.h (deleted)
- WiredServer/trunk/WiredServer.xcodeproj/project.pbxproj (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredServer/trunk/StartupItems/Wired/Wired
r923 r2983 9 9 StartService () 10 10 { 11 if [ -f /usr/local/wired/etc/wired. autostart]; then11 if [ -f /usr/local/wired/etc/wired.startup ]; then 12 12 ConsoleMessage "Starting Wired" 13 13 rm -f /usr/local/wired/wired.pid 14 /usr/local/wired/wiredctl start 14 /usr/local/wired/wiredctl start $(cat /usr/local/wired/etc/wired.startup) 15 15 fi 16 16 } … … 24 24 RestartService () 25 25 { 26 ConsoleMessage "Restarting Wired" 27 /usr/local/wired/wiredctl restart 26 if [ -f /usr/local/wired/etc/wired.startup ]; then 27 ConsoleMessage "Restarting Wired" 28 /usr/local/wired/wiredctl restart $(cat /usr/local/wired/etc/wired.startup) 29 fi 28 30 } 29 31 WiredServer/trunk/WCConfigController.m
r2975 r2983 34 34 #import "WCConfig.h" 35 35 #import "WCConfigController.h" 36 #import "WCDashboardController.h" 36 37 #import "WCSettings.h" 37 38 #import "WCStatusController.h" WiredServer/trunk/WiredServer.xcodeproj/project.pbxproj
r2975 r2983 275 275 A5A348450729839E00A16E9A /* Wired.prefPane */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Wired.prefPane; sourceTree = BUILT_PRODUCTS_DIR; }; 276 276 A5A348A2072984E000A16E9A /* prefix.pch */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; name = prefix.pch; path = Panel/prefix.pch; sourceTree = "<group>"; }; 277 A5A348C90729858D00A16E9A /* WiredCommon.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = WiredCommon.h; sourceTree = "<group>"; };278 277 A5A348FA0729868F00A16E9A /* WCSettings.h */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.h; path = WCSettings.h; sourceTree = "<group>"; }; 279 278 A5A348FB0729868F00A16E9A /* WCSettings.m */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.objc; path = WCSettings.m; sourceTree = "<group>"; }; … … 405 404 isa = PBXGroup; 406 405 children = ( 407 A5A348C90729858D00A16E9A /* WiredCommon.h */,408 406 A5B094A0073165E300E5B1F7 /* Classes */, 409 407 A5B094A1073165EA00E5B1F7 /* Resources */,
