Sha256: 534ebcc319a0c47346409044048d3d910b8676f1c4b035f549c45bb778144f24
Contents?: true
Size: 472 Bytes
Versions: 43
Compression:
Stored size: 472 Bytes
Contents
module Incline class CLI class Prepare private def restart_nginx(shell) shell.with_stat('Restarting nginx') do # test the configuration. shell.sudo_exec('nginx -t') # stop the service. shell.sudo_exec_ignore_code 'systemctl stop nginx.service' # start the service. shell.sudo_exec 'systemctl start nginx.service' end end end end end
Version data entries
43 entries across 43 versions & 1 rubygems