소스 검색

set path to gogs in init script

Fabian Peter Hammerle 8 년 전
부모
커밋
97dadaadf5
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      tasks/init-setup.yml

+ 7 - 0
tasks/init-setup.yml

@@ -4,6 +4,13 @@
     path: "{{ gogs_user_home }}/{{ gogs_init_script_path }}"
     mode: 0755
 
+- name: Set path to Gogs in init script.
+  lineinfile:
+    dest: "{{ gogs_user_home }}/{{ gogs_init_script_path }}"
+    line: "WORKINGDIR={{ gogs_user_home }}/gogs"
+    regexp: "^WORKINGDIR=.*"
+  notify: restart gogs
+
 - name: Symlink Gogs binary and startup scripts.
   file:
     src: "{{ item.src }}"