English 中文(简体)
Shell 脚本, 以创建带有密码的目录, 使其在系统启动时可运行
原标题:Shell Script to create Directory with passwords and make it runnable in system startup

我要做的是在启动时运行一个应用程序。 因此我把它做为一个服务。 在 / etc/ init. d. 下, 我使用 Ubuntu 。 问题是, 如果不存在, 我必须在 / var/ run 目录下创建一个文件夹。 以下为我的代码 。

#!/bin/sh
set -e

start() {


if [ -d "/var/run/bucardo" ]; then
    echo "Directory Exists" 
    echo -n "Starting bucardo: "
    sudo bucardo_ctl start 
    echo "done."
else
    echo "Creating Directory" 
    sudo mkdir /var/run/bucardo
    echo -n "Starting bucardo: "
    sudo bucardo_ctl start 
    echo "done."
fi
}

stop() {
echo -n "Shutting down bucardo: "
sudo bucardo_ctl stop
echo "done."
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 10
start
;;
*)

esac
exit 0

SO 以在 /var/run 下创建一个文件夹,该文件夹是应用程序的默认文件夹。

如何创建带有 shell 脚本密码的文件夹 。 这样我就可以检查并创建文件夹 。

下面是我在启动时脚本运行时的错误。 我使用以下命令来完成“ chkconfig - 级别 234 bocardo ”

以下为错误。 。

insserv: warning: script  K01centrifyda  missing LSB tags and overrides
insserv: warning: script  K01cups  missing LSB tags and overrides
insserv: warning: script  K01acpi-support  missing LSB tags and overrides
insserv: warning: script  bucardo  missing LSB tags and overrides
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  hwclock-save  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `hwclock-save 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `hwclock-save 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  ufw  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `ufw 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `ufw 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  lightdm  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `lightdm 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `lightdm 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  acpid  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `acpid 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `acpid 
insserv: warning: script  centrifyda  missing LSB tags and overrides
insserv: warning: script  adnisd  missing LSB tags and overrides
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  binfmt-support  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `binfmt-support 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `binfmt-support 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  plymouth-splash  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `plymouth-splash 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `plymouth-splash 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  network-interface  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `network-interface 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `network-interface 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  plymouth-log  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `plymouth-log 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `plymouth-log 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  alsa-restore  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `alsa-restore 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `alsa-restore 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  procps  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `procps 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `procps 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  udevtrigger  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `udevtrigger 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `udevtrigger 
insserv: warning: script  cups  missing LSB tags and overrides
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  setvtrgb  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `setvtrgb 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `setvtrgb 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script  udev  missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `udev 
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `udev 
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.

and very long... Please help me.. Thanks in advance..

As per Pieter s suggestion.. Following is the link to make it as a service in Ubentu.. http://jonathonhill.net/2009-04-23/auto-start-a-shell-script-on-ubuntu-server/

最佳回答

You don t say what the problem actually is. Is it that sudo mkdir asks for a password? Init scripts generally need to run as root already (and will during normal boot), so you don t want sudo in your script at all. While testing, just sudo when you run the script.

另外,考虑打破目录存在条件, 只要使用 < code> mkdir - p , 如果目录已经存在, 就不会出错 。

问题回答

暂无回答




相关问题
Parse players currently in lobby

I m attempting to write a bash script to parse out the following log file and give me a list of CURRENT players in the room (so ignoring players that left, but including players that may have rejoined)...

encoding of file shell script

How can I check the file encoding in a shell script? I need to know if a file is encoded in utf-8 or iso-8859-1. Thanks

Bash usage of vi or emacs

From a programming standpoint, when you set the bash shell to use vi or emacs via set -o vi or set -o emacs What is actually going on here? I ve been reading a book where it claims the bash shell ...

Dynamically building a command in bash

I am construcing a command in bash dynamically. This works fine: COMMAND="java myclass" ${COMMAND} Now I want to dynamically construct a command that redirectes the output: LOG=">> myfile.log ...

Perform OR on two hash outputs of sha1sum

I want perform sha1sum file1 and sha1sum file2 and perform bitwise OR operation with them using bash. Output should be printable i.e 53a23bc2e24d039 ... (160 bit) How can I do this? I know echo $(( ...

Set screen-title from shellscript

Is it possible to set the Screen Title using a shell script? I thought about something like sending the key commands ctrl+A shift-A Name enter I searched for about an hour on how to emulate ...

热门标签