Changeset 44092 in vbox for trunk/src/VBox/Installer/linux/install_service
- Timestamp:
- Dec 11, 2012 2:43:49 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82616
- Location:
- trunk/src/VBox/Installer/linux/install_service
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/install_service/Makefile.kmk
r44049 r44092 35 35 36 36 INSTALLS.linux += linux-install-service-bin 37 linux-install-service-bin_INST = bin/ helpers/37 linux-install-service-bin_INST = bin/scripts/ 38 38 linux-install-service-bin_MODE = a+rx,u+w 39 39 linux-install-service-bin_SOURCES = \ … … 41 41 42 42 INSTALLS.linux += linux-install-service-nobin 43 linux-install-service-nobin_INST = bin/ helpers/43 linux-install-service-nobin_INST = bin/scripts/ 44 44 linux-install-service-nobin_MODE = a+r,u+w 45 45 linux-install-service-nobin_SOURCES = \ -
trunk/src/VBox/Installer/linux/install_service/install_service.sh
r44087 r44092 80 80 81 81 EOF 82 "${script_folder}/ generate_service_file" --list-options82 "${script_folder}/../helpers/generate_service_file" --list-options 83 83 } 84 84 … … 186 186 test -f "${path}/${SERVICE_NAME}" && update="${UPDATE}" 187 187 if test -n "${INSTALL}"; then 188 "${script_folder}/ generate_service_file" --format shell --command "${COMMAND}" --arguments "${ARGUMENTS}" --description "${DESCRIPTION}" --service-name "${SERVICE_NAME}" < "${script_folder}/init_template.sh" > "${path}/${SERVICE_NAME}"188 "${script_folder}/../helpers/generate_service_file" --format shell --command "${COMMAND}" --arguments "${ARGUMENTS}" --description "${DESCRIPTION}" --service-name "${SERVICE_NAME}" < "${script_folder}/init_template.sh" > "${path}/${SERVICE_NAME}" 189 189 chmod a+x "${path}/${SERVICE_NAME}" 190 190 else
Note:
See TracChangeset
for help on using the changeset viewer.