コード例 #1
0
ファイル: test_apache.py プロジェクト: kala888/python_scripts
def install_apache():
    from fabtools.require.service import started
    from fabtools.require.apache import server
    set_hostname('www.example.com')
    server()
    started('apache2')
コード例 #2
0
ファイル: test_apache.py プロジェクト: zloy531/fabtools3
def _install_apache():
    from fabtools.require.service import started
    from fabtools.require.apache import server
    server()
    started('apache2')
コード例 #3
0
ファイル: test_apache.py プロジェクト: 26lights/fabtools
def _install_apache():
    from fabtools.require.service import started
    from fabtools.require.apache import server
    server()
    started('apache2')