Last active
          August 14, 2024 13:10 
        
      - 
      
- 
        Save bartread/d169a4416cefc306a666e2fec2f62eb3 to your computer and use it in GitHub Desktop. 
Revisions
- 
        bartread revised this gist Jan 21, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ #! /bin/sh # Other deployment actions here. Want to install (or bounce) service last. if [ -f /etc/systemd/system/arcadely.service ]; then sudo systemctl stop arcadely.service sudo systemctl disable arcadely.service 
- 
        bartread created this gist Jan 21, 2017 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #! /bin/sh if [ -f /etc/systemd/system/arcadely.service ]; then sudo systemctl stop arcadely.service sudo systemctl disable arcadely.service else sudo \cp -f ./arcadely.service /etc/systemd/system/arcadely.service fi sudo systemctl enable arcadely.service sudo systemctl start arcadely.service