Changes between Version 8 and Version 9 of InitdScriptForLinux
- Timestamp:
- Jul 17, 2010, 6:28:46 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InitdScriptForLinux
v8 v9 131 131 To automatically start the service at start-up, configure the initial variables, put the fastcgi file in the /etc/init.d/ directory and execute in a terminal: 132 132 {{{ 133 update-rc.d /etc/init.d/fastcgi defaults133 update-rc.d fastcgi defaults 134 134 }}} 135 135 … … 171 171 PORT=`expr $PORT + 1` 172 172 }}} 173 OR: 174 {{{ 175 PORT=$(($PORT + 1)) 176 }}}