Certifique-se de que este diretório exista: / home / admin1 / pritesh
você está usando o ubuntu 16.04 com systemd, então crie um arquivo de unidade systemd em /etc/systemd/service/myunit.service
[Unit]
Description=my shutdown script
DefaultDependencies=no
Before=shutdown.target reboot.target halt.target
[Service]
Type=oneshot
ExecStart=/path/to/rabbitstop
[Install]
WantedBy=halt.target reboot.target shutdown.target
execute
systemctl daemon-reload
systemctl enable myunit
desligue, pare ou reinicie para ver o resultado.