A collection of classes and commands for automated command line scripting using Python.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

549 B

System

Summary: Work with the system.

Available Commands

reboot

Reboot the system.

[reboot the system]
reboot:
sudo: yes

reload

Reload a service.

[reload postgres]
reload: postgresql

restart

Restart a service:

[restart postgres]
restart: postgresql

run

Run any shell command.

[run a useless listing command]
run: "ls -ls"

start

Start a service:

[start postgres]
start: postgresql

stop

Stop a service:

[stop postgres]
stop: postgresql