forked from ungleich-public/cdist
+update of __start_on_boot
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
6b6ae1bde2
commit
42e3c18d02
3 changed files with 39 additions and 37 deletions
|
@ -21,7 +21,7 @@
|
|||
# Check whether the given name will be started on boot or not
|
||||
#
|
||||
|
||||
os=$(cat "$__global/explorer/os")
|
||||
os=$("$__explorer/os")
|
||||
|
||||
case "$os" in
|
||||
debian|ubuntu)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# 2011 Nico Schottelius (nico-cdist at schottelius.org)
|
||||
# 2012 Nico Schottelius (nico-cdist at schottelius.org)
|
||||
#
|
||||
# This file is part of cdist.
|
||||
#
|
||||
|
@ -18,49 +18,48 @@
|
|||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
# __file is a very basic type, which will probably be reused quite often
|
||||
#
|
||||
|
||||
destination="/$__object_id"
|
||||
state_should="$(cat "$__object/parameter/state")"
|
||||
exists="$(cat "$__object/explorer/exists")"
|
||||
if [ -f "$__object/parameter/state" ]; then
|
||||
state_should="$(cat "$__object/parameter/state")"
|
||||
else
|
||||
state_should="present"
|
||||
fi
|
||||
|
||||
os=$(cat "$__global/explorer/os")
|
||||
name="$__object_id"
|
||||
|
||||
# Support runlevels later
|
||||
#runlevel=$(cat $__global/explorer/runlevel)
|
||||
|
||||
case "$state_should" in
|
||||
present)
|
||||
# No source? Create empty file
|
||||
if [ ! -f "$__object/parameter/source" ]; then
|
||||
if [ "$exists" = "no" ]; then
|
||||
echo touch \"$destination\"
|
||||
fi
|
||||
fi
|
||||
case "$os" in
|
||||
debian|ubuntu)
|
||||
echo update-rc.d \"$name\" defaults
|
||||
;;
|
||||
|
||||
# Mode settings
|
||||
if [ -f "$__object/parameter/mode" ]; then
|
||||
echo chmod \"$(cat "$__object/parameter/mode")\" \"$destination\"
|
||||
fi
|
||||
gentoo)
|
||||
echo rc-update add \"$name\" default
|
||||
;;
|
||||
|
||||
# Group
|
||||
if [ -f "$__object/parameter/group" ]; then
|
||||
echo chgrp \"$(cat "$__object/parameter/group")\" \"$destination\"
|
||||
fi
|
||||
centos|fedora|owl|redhat)
|
||||
echo echo chkconfig \"$name\" on
|
||||
;;
|
||||
|
||||
# Owner
|
||||
if [ -f "$__object/parameter/owner" ]; then
|
||||
echo chown \"$(cat "$__object/parameter/owner")\" \"$destination\"
|
||||
fi
|
||||
*)
|
||||
echo "Unsupported os: $os" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
||||
absent)
|
||||
|
||||
if [ "$exists" = "yes" ]; then
|
||||
echo rm -f \"$destination\"
|
||||
fi
|
||||
|
||||
;;
|
||||
|
||||
|
||||
*)
|
||||
echo "Unknown state: $state_should" >&2
|
||||
exit 1
|
||||
;;
|
||||
|
||||
esac
|
||||
|
|
|
@ -23,6 +23,9 @@ OPTIONAL PARAMETERS
|
|||
state::
|
||||
'present' or 'absent', defaults to 'present'
|
||||
|
||||
runlevel::
|
||||
Specify runlevel(s) to affect. Defaults to default or current runlevel.
|
||||
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
|
Loading…
Reference in a new issue