restart systemd service within a timeframe











up vote
1
down vote

favorite












I have systemd unit file, I know it can be restarted on failure by providing parameters, like :



Restart=always
RestartSec=90


It will restart after 90 seconds whenever it fails,



But, I want to restart only if system time is in between given time-frame, say between 08:00 and 17:00, only then restart.



Is there way to do this via systemd ?










share|improve this question


























    up vote
    1
    down vote

    favorite












    I have systemd unit file, I know it can be restarted on failure by providing parameters, like :



    Restart=always
    RestartSec=90


    It will restart after 90 seconds whenever it fails,



    But, I want to restart only if system time is in between given time-frame, say between 08:00 and 17:00, only then restart.



    Is there way to do this via systemd ?










    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have systemd unit file, I know it can be restarted on failure by providing parameters, like :



      Restart=always
      RestartSec=90


      It will restart after 90 seconds whenever it fails,



      But, I want to restart only if system time is in between given time-frame, say between 08:00 and 17:00, only then restart.



      Is there way to do this via systemd ?










      share|improve this question













      I have systemd unit file, I know it can be restarted on failure by providing parameters, like :



      Restart=always
      RestartSec=90


      It will restart after 90 seconds whenever it fails,



      But, I want to restart only if system time is in between given time-frame, say between 08:00 and 17:00, only then restart.



      Is there way to do this via systemd ?







      systemd systemd-timer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 days ago









      mkmayank

      43110




      43110






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          2
          down vote













          Directly in a service unit file with settings: no.



          With a Heath Robinson mechanism: yes, as follows.




          • Create two snippet files somewhere, wibble-in-hours.conf with these settings turned on and wibble-out-of-hours.conf with these settings turned off. Don't forget the section heading.

          • At any given point, /etc/systemd/system/wibble.service.d/restart.conf is one or the other of these files. The systemd manual (q.v.) explains drop-in directories and snippet files.

          • Set up uschedule jobs, cron jobs, or whatever other mechanism you like, to swap the snippet files around at the appropriate times, invoke systemctl daemon-reload, and of course bring the service up if it has terminated during the out of hours period. (Be aware of masking, disabled services, and the fact that some operating systems stop services temporarily during package upgrades, all of which make the test of whether to start the service non-trivial.)






          share|improve this answer





















          • A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
            – Filipe Brandenburger
            yesterday










          • In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
            – Filipe Brandenburger
            yesterday










          • It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
            – JdeBP
            yesterday


















          up vote
          1
          down vote













          If it's acceptable to you that the interval for the restart is not exactly 90 seconds and not exactly the same every time, then you can implement this in a simple way with a service unit + a corresponding timer unit.



          Simply have the timer unit specify your time frame in an OnCalendar= setting.



          For example, to run once a minute from 08:00 to 16:59 (usually on second 00, but give systemd a leeway of 5 seconds to schedule it):



          [Timer]
          OnCalendar=*-*-* 08-16:*:00
          AccuracySec=5s


          Additionally, have Restart=no (or leave out Restart=, since no is the default) in your service unit.



          This configuration will have systemd try to start your unit once a minute within your time frame. However, if the unit is already running, trying to start it will not do anything.



          If, on the other hand, the unit is stopped and the timer fires (once a minute within that time frame), it will in effect "restart" the unit.



          The net effect is that this timer will cause the unit to restart between 0s and 65s (counting the 5s leeway) after it stops, but only within your time frame (since your timer only fires during those hours.)



          If having 0s as a lower bound is unacceptable (let's say, you want at least 30s between the unit stopping and then starting again), you can use a workaround for that by adding an ExecStopPost=/bin/sleep 30 to the service unit. That way, after the main service stops, it will still take 30s for the unit to be effectively "stopped" and therefore will only be eligible for restart from the timer unit after these 30s have elapsed. In effect, this makes it restart within 30s to 95s from when it stopped.



          See the man page for systemd.time for more details on how to specify intervals for OnCalendar= so you can tune it to the specific time requirements in your restart policy.






          share|improve this answer




























            up vote
            1
            down vote



            accepted










            Thanks for the suggestions and your time.
            I achieved this via systemd service with



            Restart=always



            and two crontab entries as suggested by @JdeBP




            1. one to start at 08:00

            2. other to stop at 17:00






            share|improve this answer





















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "106"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














               

              draft saved


              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f481640%2frestart-systemd-service-within-a-timeframe%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              2
              down vote













              Directly in a service unit file with settings: no.



              With a Heath Robinson mechanism: yes, as follows.




              • Create two snippet files somewhere, wibble-in-hours.conf with these settings turned on and wibble-out-of-hours.conf with these settings turned off. Don't forget the section heading.

              • At any given point, /etc/systemd/system/wibble.service.d/restart.conf is one or the other of these files. The systemd manual (q.v.) explains drop-in directories and snippet files.

              • Set up uschedule jobs, cron jobs, or whatever other mechanism you like, to swap the snippet files around at the appropriate times, invoke systemctl daemon-reload, and of course bring the service up if it has terminated during the out of hours period. (Be aware of masking, disabled services, and the fact that some operating systems stop services temporarily during package upgrades, all of which make the test of whether to start the service non-trivial.)






              share|improve this answer





















              • A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
                – Filipe Brandenburger
                yesterday










              • In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
                – Filipe Brandenburger
                yesterday










              • It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
                – JdeBP
                yesterday















              up vote
              2
              down vote













              Directly in a service unit file with settings: no.



              With a Heath Robinson mechanism: yes, as follows.




              • Create two snippet files somewhere, wibble-in-hours.conf with these settings turned on and wibble-out-of-hours.conf with these settings turned off. Don't forget the section heading.

              • At any given point, /etc/systemd/system/wibble.service.d/restart.conf is one or the other of these files. The systemd manual (q.v.) explains drop-in directories and snippet files.

              • Set up uschedule jobs, cron jobs, or whatever other mechanism you like, to swap the snippet files around at the appropriate times, invoke systemctl daemon-reload, and of course bring the service up if it has terminated during the out of hours period. (Be aware of masking, disabled services, and the fact that some operating systems stop services temporarily during package upgrades, all of which make the test of whether to start the service non-trivial.)






              share|improve this answer





















              • A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
                – Filipe Brandenburger
                yesterday










              • In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
                – Filipe Brandenburger
                yesterday










              • It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
                – JdeBP
                yesterday













              up vote
              2
              down vote










              up vote
              2
              down vote









              Directly in a service unit file with settings: no.



              With a Heath Robinson mechanism: yes, as follows.




              • Create two snippet files somewhere, wibble-in-hours.conf with these settings turned on and wibble-out-of-hours.conf with these settings turned off. Don't forget the section heading.

              • At any given point, /etc/systemd/system/wibble.service.d/restart.conf is one or the other of these files. The systemd manual (q.v.) explains drop-in directories and snippet files.

              • Set up uschedule jobs, cron jobs, or whatever other mechanism you like, to swap the snippet files around at the appropriate times, invoke systemctl daemon-reload, and of course bring the service up if it has terminated during the out of hours period. (Be aware of masking, disabled services, and the fact that some operating systems stop services temporarily during package upgrades, all of which make the test of whether to start the service non-trivial.)






              share|improve this answer












              Directly in a service unit file with settings: no.



              With a Heath Robinson mechanism: yes, as follows.




              • Create two snippet files somewhere, wibble-in-hours.conf with these settings turned on and wibble-out-of-hours.conf with these settings turned off. Don't forget the section heading.

              • At any given point, /etc/systemd/system/wibble.service.d/restart.conf is one or the other of these files. The systemd manual (q.v.) explains drop-in directories and snippet files.

              • Set up uschedule jobs, cron jobs, or whatever other mechanism you like, to swap the snippet files around at the appropriate times, invoke systemctl daemon-reload, and of course bring the service up if it has terminated during the out of hours period. (Be aware of masking, disabled services, and the fact that some operating systems stop services temporarily during package upgrades, all of which make the test of whether to start the service non-trivial.)







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered 2 days ago









              JdeBP

              31.5k466146




              31.5k466146












              • A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
                – Filipe Brandenburger
                yesterday










              • In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
                – Filipe Brandenburger
                yesterday










              • It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
                – JdeBP
                yesterday


















              • A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
                – Filipe Brandenburger
                yesterday










              • In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
                – Filipe Brandenburger
                yesterday










              • It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
                – JdeBP
                yesterday
















              A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
              – Filipe Brandenburger
              yesterday




              A slight improvement here is to use systemctl set-property, which will essentially do the management of an override for you in a much simpler way. Using --runtime is also possible, since having the overrides in /run is probably OK (boot needs special handling anyway, since there's no guarantee restart will be in the same state at that point.)
              – Filipe Brandenburger
              yesterday












              In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
              – Filipe Brandenburger
              yesterday




              In short, at 08:00 run systemctl --runtime set-property wibble.service Restart=yes and at 17:00 run systemctl --runtime set-property wibble.service Restart=no. At boot, need to run a shell script that will check whether the current hour is in [8, 17) and set it to yes, otherwise to no.
              – Filipe Brandenburger
              yesterday












              It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
              – JdeBP
              yesterday




              It's not an improvement for the simple reason that it does not actually work. (-: The manual explains why.
              – JdeBP
              yesterday












              up vote
              1
              down vote













              If it's acceptable to you that the interval for the restart is not exactly 90 seconds and not exactly the same every time, then you can implement this in a simple way with a service unit + a corresponding timer unit.



              Simply have the timer unit specify your time frame in an OnCalendar= setting.



              For example, to run once a minute from 08:00 to 16:59 (usually on second 00, but give systemd a leeway of 5 seconds to schedule it):



              [Timer]
              OnCalendar=*-*-* 08-16:*:00
              AccuracySec=5s


              Additionally, have Restart=no (or leave out Restart=, since no is the default) in your service unit.



              This configuration will have systemd try to start your unit once a minute within your time frame. However, if the unit is already running, trying to start it will not do anything.



              If, on the other hand, the unit is stopped and the timer fires (once a minute within that time frame), it will in effect "restart" the unit.



              The net effect is that this timer will cause the unit to restart between 0s and 65s (counting the 5s leeway) after it stops, but only within your time frame (since your timer only fires during those hours.)



              If having 0s as a lower bound is unacceptable (let's say, you want at least 30s between the unit stopping and then starting again), you can use a workaround for that by adding an ExecStopPost=/bin/sleep 30 to the service unit. That way, after the main service stops, it will still take 30s for the unit to be effectively "stopped" and therefore will only be eligible for restart from the timer unit after these 30s have elapsed. In effect, this makes it restart within 30s to 95s from when it stopped.



              See the man page for systemd.time for more details on how to specify intervals for OnCalendar= so you can tune it to the specific time requirements in your restart policy.






              share|improve this answer

























                up vote
                1
                down vote













                If it's acceptable to you that the interval for the restart is not exactly 90 seconds and not exactly the same every time, then you can implement this in a simple way with a service unit + a corresponding timer unit.



                Simply have the timer unit specify your time frame in an OnCalendar= setting.



                For example, to run once a minute from 08:00 to 16:59 (usually on second 00, but give systemd a leeway of 5 seconds to schedule it):



                [Timer]
                OnCalendar=*-*-* 08-16:*:00
                AccuracySec=5s


                Additionally, have Restart=no (or leave out Restart=, since no is the default) in your service unit.



                This configuration will have systemd try to start your unit once a minute within your time frame. However, if the unit is already running, trying to start it will not do anything.



                If, on the other hand, the unit is stopped and the timer fires (once a minute within that time frame), it will in effect "restart" the unit.



                The net effect is that this timer will cause the unit to restart between 0s and 65s (counting the 5s leeway) after it stops, but only within your time frame (since your timer only fires during those hours.)



                If having 0s as a lower bound is unacceptable (let's say, you want at least 30s between the unit stopping and then starting again), you can use a workaround for that by adding an ExecStopPost=/bin/sleep 30 to the service unit. That way, after the main service stops, it will still take 30s for the unit to be effectively "stopped" and therefore will only be eligible for restart from the timer unit after these 30s have elapsed. In effect, this makes it restart within 30s to 95s from when it stopped.



                See the man page for systemd.time for more details on how to specify intervals for OnCalendar= so you can tune it to the specific time requirements in your restart policy.






                share|improve this answer























                  up vote
                  1
                  down vote










                  up vote
                  1
                  down vote









                  If it's acceptable to you that the interval for the restart is not exactly 90 seconds and not exactly the same every time, then you can implement this in a simple way with a service unit + a corresponding timer unit.



                  Simply have the timer unit specify your time frame in an OnCalendar= setting.



                  For example, to run once a minute from 08:00 to 16:59 (usually on second 00, but give systemd a leeway of 5 seconds to schedule it):



                  [Timer]
                  OnCalendar=*-*-* 08-16:*:00
                  AccuracySec=5s


                  Additionally, have Restart=no (or leave out Restart=, since no is the default) in your service unit.



                  This configuration will have systemd try to start your unit once a minute within your time frame. However, if the unit is already running, trying to start it will not do anything.



                  If, on the other hand, the unit is stopped and the timer fires (once a minute within that time frame), it will in effect "restart" the unit.



                  The net effect is that this timer will cause the unit to restart between 0s and 65s (counting the 5s leeway) after it stops, but only within your time frame (since your timer only fires during those hours.)



                  If having 0s as a lower bound is unacceptable (let's say, you want at least 30s between the unit stopping and then starting again), you can use a workaround for that by adding an ExecStopPost=/bin/sleep 30 to the service unit. That way, after the main service stops, it will still take 30s for the unit to be effectively "stopped" and therefore will only be eligible for restart from the timer unit after these 30s have elapsed. In effect, this makes it restart within 30s to 95s from when it stopped.



                  See the man page for systemd.time for more details on how to specify intervals for OnCalendar= so you can tune it to the specific time requirements in your restart policy.






                  share|improve this answer












                  If it's acceptable to you that the interval for the restart is not exactly 90 seconds and not exactly the same every time, then you can implement this in a simple way with a service unit + a corresponding timer unit.



                  Simply have the timer unit specify your time frame in an OnCalendar= setting.



                  For example, to run once a minute from 08:00 to 16:59 (usually on second 00, but give systemd a leeway of 5 seconds to schedule it):



                  [Timer]
                  OnCalendar=*-*-* 08-16:*:00
                  AccuracySec=5s


                  Additionally, have Restart=no (or leave out Restart=, since no is the default) in your service unit.



                  This configuration will have systemd try to start your unit once a minute within your time frame. However, if the unit is already running, trying to start it will not do anything.



                  If, on the other hand, the unit is stopped and the timer fires (once a minute within that time frame), it will in effect "restart" the unit.



                  The net effect is that this timer will cause the unit to restart between 0s and 65s (counting the 5s leeway) after it stops, but only within your time frame (since your timer only fires during those hours.)



                  If having 0s as a lower bound is unacceptable (let's say, you want at least 30s between the unit stopping and then starting again), you can use a workaround for that by adding an ExecStopPost=/bin/sleep 30 to the service unit. That way, after the main service stops, it will still take 30s for the unit to be effectively "stopped" and therefore will only be eligible for restart from the timer unit after these 30s have elapsed. In effect, this makes it restart within 30s to 95s from when it stopped.



                  See the man page for systemd.time for more details on how to specify intervals for OnCalendar= so you can tune it to the specific time requirements in your restart policy.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered yesterday









                  Filipe Brandenburger

                  5,7991624




                  5,7991624






















                      up vote
                      1
                      down vote



                      accepted










                      Thanks for the suggestions and your time.
                      I achieved this via systemd service with



                      Restart=always



                      and two crontab entries as suggested by @JdeBP




                      1. one to start at 08:00

                      2. other to stop at 17:00






                      share|improve this answer

























                        up vote
                        1
                        down vote



                        accepted










                        Thanks for the suggestions and your time.
                        I achieved this via systemd service with



                        Restart=always



                        and two crontab entries as suggested by @JdeBP




                        1. one to start at 08:00

                        2. other to stop at 17:00






                        share|improve this answer























                          up vote
                          1
                          down vote



                          accepted







                          up vote
                          1
                          down vote



                          accepted






                          Thanks for the suggestions and your time.
                          I achieved this via systemd service with



                          Restart=always



                          and two crontab entries as suggested by @JdeBP




                          1. one to start at 08:00

                          2. other to stop at 17:00






                          share|improve this answer












                          Thanks for the suggestions and your time.
                          I achieved this via systemd service with



                          Restart=always



                          and two crontab entries as suggested by @JdeBP




                          1. one to start at 08:00

                          2. other to stop at 17:00







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 7 hours ago









                          mkmayank

                          43110




                          43110






























                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f481640%2frestart-systemd-service-within-a-timeframe%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              サソリ

                              広島県道265号伴広島線

                              Accessing regular linux commands in Huawei's Dopra Linux