이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
가입하기
로그인
Thrace-lan.info
/
ansible
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
working on changes, and debugging
master
Erin Sims
2 년 전
부모
ecfa26d642
커밋
5558942fec
2개의 변경된 파일
과
34개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
playbooks/sshfs.mount.j2
+19
-0
playbooks/sshfs.service.j2.old
+ 15
- 0
playbooks/sshfs.mount.j2
파일 보기
@@ -0,0 +1,15 @@
[Unit]
Description=SSHFS Daemon
After=network-online.target
Wants=network-online.target
[Install]
WantedBy=default.target
[Mount]
Type=fuse.sshfs
What={{ [username,'@',hostname,':',remotepath,item,'/',' ',localpath,item,'/' ]|join() }}
Where={{[ localpath,item,'/']|join() }}
RestartSec=20
Restart=on-failure
+ 19
- 0
playbooks/sshfs.service.j2.old
파일 보기
@@ -0,0 +1,19 @@
[Unit]
Description=SSHFS Daemon
After=network-online.target
Wants=network-online.target
StartLimitIntervalSec=300
StartLimitBurst=10
[Install]
WantedBy=default.target
[Service]
Type=exec
User=sshfs
Group=www-data
ExecStart=/usr/bin/sshfs -p {{sshfsport }} -o allow_root {{ [username,'@',hostname,':',remotepath,item,'/',' ',localpath,item,'/' ]|join() }}
ExecStop=/usr/bin/umount "{{[ localpath,item,'/']|join() }}"
RestartSec=20
Restart=on-failure
쓰기
미리보기
불러오는 중...
취소
저장