Browse Source

Merge branch 'mail' of github.com:rtCamp/easyengine into mail

old-stable
gau1991 11 years ago
parent
commit
a6732e6a00
  1. 4
      src/lib/ee_lib_git.sh
  2. 3
      src/lib/ee_lib_service.sh

4
src/lib/ee_lib_git.sh

@ -3,8 +3,9 @@
function ee_lib_git()
{
for ee_git_dir in ${@:1:$(($#-1))}; do
if [ -d $ee_git_dir ]; then
# Change directory
cd $ee_git_dir || ee_lib_error "Unable to change directory $ee_git_dir, exit status = " $?
cd $ee_git_dir
# Check .git
if [ ! -d .git ]; then
@ -20,5 +21,6 @@ function ee_lib_git()
git add --all && git commit -am "${@: -1}" &>> $EE_COMMAND_LOG \
|| ee_lib_error "Unable to Git commit on $ee_git_dir, exit status = " $?
fi
fi
done
}

3
src/lib/ee_lib_service.sh

@ -7,8 +7,7 @@
function ee_lib_service()
{
for ee_service_name in ${@:1:$(($#-1))}; do
dpkg --get-selections | grep -v deinstall | grep $ee_service_name &>> $EE_COMMAND_LOG
if [ $? -eq 0 ];then
if [ -f /etc/init.d/$ee_service_name ];then
# Display message
ee_lib_echo "Executing service $ee_service_name ${@: -1}, please wait..."

Loading…
Cancel
Save