back into development
authorChris Koeritz <fred@gruntose.com>
Mon, 13 Nov 2017 02:28:32 +0000 (21:28 -0500)
committerChris Koeritz <fred@gruntose.com>
Mon, 13 Nov 2017 02:28:32 +0000 (21:28 -0500)
need to do chown.  implemented but untested.

scripts/site_avenger/powerup.sh
scripts/site_avenger/standup.sh

index 433b4a1e394cbbc790839b4d1bc1b3c66d8380f7..05181fb5c080f518ab4f74958f2ba75796e317de 100644 (file)
@@ -27,13 +27,14 @@ export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )"  # obtain the script's work
 function print_instructions()
 {
   echo
-  echo "$(basename $0 .sh) [app dirname] [repository] [theme name]"
+  echo "$(basename $0 .sh) [app dirname] [repository] [theme name] [user name]"
   echo
   echo "All parameters are optional, and intelligent guesses for them will be made."
   echo
   echo "app dirname: The folder where the app will be stored."
   echo "repository: The name of the git repository (short version, no URL)."
   echo "theme name: The name to use for the cakephp theme."
+  echo "user name: The name of the user to chown the checkout to."
   echo
   exit 0
 }
@@ -46,6 +47,10 @@ function print_instructions()
 app_dirname="$1"; shift
 repo_name="$1"; shift
 theme_name="$1"; shift
+user_name="$1"; shift
+
+echo stopping with user name is $user_name
+exit 1
 
 if [ "$app_dirname" == "-help" -o "$app_dirname" == "--help" ]; then
   print_instructions
@@ -99,5 +104,15 @@ create_site_links "$site_store_path" "$theme_name"
 
 sep
 
+if [ ! -z "$user_name" ]; then
+  echo "Chowning the apps folder to be owned by: $user_name"
+#hmmm: have to hope for now for standard group named after user 
+  chown -R "$user_name:$user_name" "$APPLICATION_DIR"
+  test_or_die "Chowning $APPLICATION_DIR to be owned by $user_name"
+fi
+
+sep
+
+
 echo "Finished powering up the site in '${app_dirname}'."
 
index bb9d07000c778490a9d711e646213250c3e17b0e..3f5a08602160aff9900185264644dbef78c3d7cd 100644 (file)
@@ -81,7 +81,7 @@ sep
 echo about to do powerup with: app="$APPLICATION_NAME" repo="$REPO_NAME" theme="$THEME_NAME"
 echo default repo is "$DEFAULT_REPOSITORY_ROOT" 
 
-powerup "$APPLICATION_NAME" "$REPO_NAME" "$THEME_NAME"
+powerup "$APPLICATION_NAME" "$REPO_NAME" "$THEME_NAME" "$USER"
 
 sep