Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cssd(1m) [sunos man page]

cssd(1M)						  System Administration Commands						  cssd(1M)

NAME
cssd - daemon which invokes and watches the CSs SYNOPSIS
/usr/sbin/cssd [-f filename] AVAILABILITY
SUNWjfpu DESCRIPTION
cssd is the command which invokes and watches CS available in MLE (Multi Language Environment). After five seconds of the ending (includ- ing abnormal termination) of a CS, cssd re-invokes the CS. CS STARTING INFORMATION FILE In a CS starting information file, /etc/css.conf by default, some CS starting information directories are described. This file can be cus- tomized. cssd reads /etc/css.conf to get CS starting information directories, and then it invokes all executable files in the directories. Usually, each CS itself is not placed in the directories and is invoked indirectly from a script in one of the directories. CS STARTING SCRIPT A CS starting script is located in a CS starting information directory. cssd reads all CS starting information directories in the sequence specified in /etc/css.conf and finds to invoke all CS starting scripts. If two or more scripts which have the same filename are found, cssd invokes only the first one. UPDATING CS STARTING INFORMAION When cssd receives signal SIGHUP , it re-reads /etc/css.conf and re-finds all CS starting scripts, and then restarts, starts or terminates each script according to the following conditions. A script whose modified time is changed (is to be restarted) A script which is newly added (is to be started) A script which is deleted (is to be terminated) TO TERMINATE When cssd receives signal SIGTERM, it sends SIGTERM to each CS under the cssd's management and terminates itself (in general, each CS also terminates with the signal). ERROR INFORMATION As a facility of daemon, cssd sends error information at level `err' , and invoke/re-invoke information at level `notice' to syslogd(1M). OPTION
-f filenaSpecify a CS starting information file. Without this option, /etc/css.conf is used. FILE
/etc/css.conf file for the information of CSs by default SEE ALSO
css.conf(4), syslogd(1M) BUGS
If a CS starting script is programmed so that itself is exec-ed by a CS, cssd understands that the process of the CS starting script is terminated in spite of the CS's termination, and so puts syslog message out. SunOS 5.10 10 Jan 2003 cssd(1M)

Check Out this Related Man Page

DANCER(1p)						User Contributed Perl Documentation						DANCER(1p)

NAME
dancer - helper script to create new Dancer applications SYNOPSIS
dancer [options] -a <appname> OPTIONS
-h, --help : print what you are currently reading -a, --application : the name of your application -p, --path : the path where to create your application (current directory if not specified) -x, --no-check : don't check for the latest version of Dancer (checking version implies internet connection) -v, --version : print the version of dancer being used DESCRIPTION
Helper script for providing a bootstrapping method to quickly and easily create the framework for a new Dancer application. EXAMPLE
Here is an application created with dancer: $ dancer -a mywebapp + mywebapp + mywebapp/bin + mywebapp/bin/app.pl + mywebapp/config.yml + mywebapp/environments + mywebapp/environments/development.yml + mywebapp/environments/production.yml + mywebapp/views + mywebapp/views/index.tt + mywebapp/views/layouts + mywebapp/views/layouts/main.tt + mywebapp/lib + mywebapp/lib/mywebapp.pm + mywebapp/public + mywebapp/public/css + mywebapp/public/css/style.css + mywebapp/public/css/error.css + mywebapp/public/images + mywebapp/public/500.html + mywebapp/public/404.html + mywebapp/public/dispatch.fcgi + mywebapp/public/dispatch.cgi + mywebapp/public/javascripts + mywebapp/public/javascripts/jquery.js + mywebapp/Makefile.PL + mywebapp/t + mywebapp/t/002_index_route.t + mywebapp/t/001_base.t The application is ready to serve: $ cd mywebapp $ ./mywebapp.pl >> Listening on 127.0.0.1:3000 == Entering the development dance floor ... AUTHOR
This script has been written by Sebastien Deseille <sebastien.deseille@gmail.com> and Alexis Sukrieh <sukria@cpan.org>. SOURCE CODE
See Dancer for more information. LICENSE
This module is free software and is published under the same terms as Perl itself. perl v5.14.2 2012-04-03 DANCER(1p)
Man Page