반응형
fabric hello print on CentOS 8
테스트 환경
$ cat /etc/redhat-release
CentOS Linux release 8.1.1911 (Core)
$ python -V
Python 3.6.8
$ fab -V
Fabric 2.5.0
Paramiko 2.7.2
Invoke 1.5.0
fabfile.py 파일 편집
vim fabfile.py
$ vim fabfile.py
from fabric import task
@task
def hello(ctx):
print("hello world.")
fab 실행
$ fab --list
Available tasks:
hello
fab hello
$ fab hello
hello world.
728x90
반응형
'리눅스' 카테고리의 다른 글
SSH Config 파일을 사용하여 SSH를 간편하게 접속하는 방법 (0) | 2021.01.19 |
---|---|
fabric hello print on CentOS 7 (0) | 2021.01.11 |
Apache 로그 파일을 로테이션 설정 (0) | 2021.01.07 |
[리눅스] diff 명령어 (0) | 2020.12.31 |
리눅스 sed 명령어 (0) | 2020.12.31 |