ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    File Deletion after x amount of time CentOS 7

    Scheduled Pinned Locked Moved Water Closet
    34 Posts 8 Posters 2.2k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • wirestyle22W
      wirestyle22 @DustinB3403
      last edited by

      @DustinB3403 said in How to Make a File Self Delete or Time Bomb:

      @Grey said in How to Make a File Self Delete or Time Bomb:

      cron rm

      Yeah but you'd have to be careful 🙂

      This is not a time crunch situation so I have as much time as I want to test it thoroughly

      1 Reply Last reply Reply Quote 0
      • GreyG
        Grey @DustinB3403
        last edited by

        @DustinB3403 said in How to Make a File Self Delete or Time Bomb:

        @Grey said in How to Make a File Self Delete or Time Bomb:

        cron rm

        Yeah but you'd have to be careful 🙂

        rm -rf /

        1 Reply Last reply Reply Quote 0
        • wirestyle22W
          wirestyle22
          last edited by

          Hm. I'm going to try to get my auto-renew setup for certbot/letsencrypt through cron and then I guess I'll try to crack this. Good to know it's possible.

          1 Reply Last reply Reply Quote 0
          • GreyG
            Grey
            last edited by

            find /path/to/files -mtime +5 -exec rm {} ;*
            That line would delete files older than the specified number of days.

            wirestyle22W 1 Reply Last reply Reply Quote 2
            • wirestyle22W
              wirestyle22 @Grey
              last edited by

              @Grey said in How to Make a File Self Delete or Time Bomb:

              find /path/to/files -mtime +5 -exec rm {} ;*
              That line would delete files older than the specified number of days.

              Very helpful. Thank you.

              GreyG 1 Reply Last reply Reply Quote 0
              • GreyG
                Grey @wirestyle22
                last edited by

                @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                @Grey said in How to Make a File Self Delete or Time Bomb:

                find /path/to/files -mtime +5 -exec rm {} ;*
                That line would delete files older than the specified number of days.

                Very helpful. Thank you.

                No worries. Had to mine my twitter account to find it. 😄

                1 Reply Last reply Reply Quote 1
                • wirestyle22W
                  wirestyle22
                  last edited by

                  Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                  GreyG scottalanmillerS DashrenderD 3 Replies Last reply Reply Quote 0
                  • GreyG
                    Grey @wirestyle22
                    last edited by

                    @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                    Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                    Here's how to do the same thing in powershell: http://www.networknet.nl/apps/wp/published/powershell-delete-files-older-than-x-days

                    1 Reply Last reply Reply Quote 2
                    • scottalanmillerS
                      scottalanmiller @wirestyle22
                      last edited by

                      @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                      Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                      You could, instead. secretly archive the files and store them someplace offline so that they THINK that they deleted them.

                      GreyG wirestyle22W 2 Replies Last reply Reply Quote 3
                      • GreyG
                        Grey @scottalanmiller
                        last edited by

                        @scottalanmiller said in How to Make a File Self Delete or Time Bomb:

                        @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                        Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                        You could, instead. secretly archive the files and store them someplace offline so that they THINK that they deleted them.

                        I see you're a graduate from the Hillary Clinton School of Technology.

                        1 Reply Last reply Reply Quote 2
                        • wirestyle22W
                          wirestyle22 @scottalanmiller
                          last edited by

                          @scottalanmiller said in How to Make a File Self Delete or Time Bomb:

                          @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                          Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                          You could, instead. secretly archive the files and store them someplace offline so that they THINK that they deleted them.

                          Nah
                          eaQvGdK.gif

                          scottalanmillerS 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @wirestyle22
                            last edited by

                            @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                            @scottalanmiller said in How to Make a File Self Delete or Time Bomb:

                            @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                            Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                            You could, instead. secretly archive the files and store them someplace offline so that they THINK that they deleted them.

                            Nah
                            eaQvGdK.gif

                            Just be aware, if YOU delete files and something important is lost and you aren't 100% clear that there is a policy for this protecting you from management telling YOU that you can delete files, you could be on the hook legally. I would never do this unless told to, in writing, explicitly by management.

                            1 Reply Last reply Reply Quote 3
                            • scottalanmillerS
                              scottalanmiller
                              last edited by

                              Even if there is a policy that the users are supposed to clean up files, unless there is also a policy that says that IT is tasked to enforce this through forced deletion, I would stay away from this completely. There is a huge different between "users are supposed to clean things up" and "IT has decided to start deleting things." Never take enforcement into your own hands.

                              DustinB3403D 1 Reply Last reply Reply Quote 3
                              • DashrenderD
                                Dashrender @wirestyle22
                                last edited by

                                @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                GreyG scottalanmillerS 2 Replies Last reply Reply Quote 1
                                • GreyG
                                  Grey @Dashrender
                                  last edited by

                                  @Dashrender said in How to Make a File Self Delete or Time Bomb:

                                  @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                  Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                  Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                  Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                  We have docs that share data and that folder must be auto-cleaned. HIPAA.

                                  scottalanmillerS 1 Reply Last reply Reply Quote 0
                                  • scottalanmillerS
                                    scottalanmiller @Dashrender
                                    last edited by

                                    @Dashrender said in How to Make a File Self Delete or Time Bomb:

                                    @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                    Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                    Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                    Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                    And if she wanted it, she should be telling you to do it, not you asking if you can do it. No reason for IT to care or promote this outside of letting management know that it is an option or whatever.

                                    wirestyle22W 1 Reply Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @Grey
                                      last edited by

                                      @Grey said in How to Make a File Self Delete or Time Bomb:

                                      @Dashrender said in How to Make a File Self Delete or Time Bomb:

                                      @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                      Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                      Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                      Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                      We have docs that share data and that folder must be auto-cleaned. HIPAA.

                                      And in a case like that, management and management alone would dictate that and make it something that IT has to do. IT would never be the banner carrier for a retention policy.

                                      1 Reply Last reply Reply Quote 0
                                      • wirestyle22W
                                        wirestyle22 @scottalanmiller
                                        last edited by wirestyle22

                                        @scottalanmiller said in How to Make a File Self Delete or Time Bomb:

                                        @Dashrender said in How to Make a File Self Delete or Time Bomb:

                                        @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                        Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                        Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                        Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                        And if she wanted it, she should be telling you to do it, not you asking if you can do it. No reason for IT to care or promote this outside of letting management know that it is an option or whatever.

                                        It was requested by upper management of the city. I know there are going to be a lot of tears and I'm here to say your tears taste so good users. So good.

                                        DashrenderD scottalanmillerS 2 Replies Last reply Reply Quote 0
                                        • DashrenderD
                                          Dashrender @wirestyle22
                                          last edited by Dashrender

                                          @wirestyle22 said in File Deletion after x amount of time CentOS 7:

                                          @scottalanmiller said in How to Make a File Self Delete or Time Bomb:

                                          @Dashrender said in How to Make a File Self Delete or Time Bomb:

                                          @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                          Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                          Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                          Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                          And if she wanted it, she should be telling you to do it, not you asking if you can do it. No reason for IT to care or promote this outside of letting management know that it is an option or whatever.

                                          It was requested by upper management of the city. I know there are going to be a lot of tears and I'm here to say your tears taste so good users. So good.

                                          Are up Cartman now? 😛

                                          Tears of unfathomable sorrow -Cartman to Scott Tenorman.

                                          wirestyle22W 1 Reply Last reply Reply Quote 1
                                          • wirestyle22W
                                            wirestyle22 @Dashrender
                                            last edited by

                                            @Dashrender said in File Deletion after x amount of time CentOS 7:

                                            @wirestyle22 said in File Deletion after x amount of time CentOS 7:

                                            @scottalanmiller said in How to Make a File Self Delete or Time Bomb:

                                            @Dashrender said in How to Make a File Self Delete or Time Bomb:

                                            @wirestyle22 said in How to Make a File Self Delete or Time Bomb:

                                            Our users have no idea how to maintain a file server or use things for their intended purpose so I want to establish a policy immediately when this thing goes live so if their files are deleted it's their own problem

                                            Good luck getting this by management. My boss would never allow something that auto deletes something after not being touched for some period of time.

                                            Perhaps she would allow some type of auto archive that the user would then have to contact IT to get it back, but auto delete - never.

                                            And if she wanted it, she should be telling you to do it, not you asking if you can do it. No reason for IT to care or promote this outside of letting management know that it is an option or whatever.

                                            It was requested by upper management of the city. I know there are going to be a lot of tears and I'm here to say your tears taste so good users. So good.

                                            Are up Cartman now? 😛

                                            We're all Cartman. This is the internet

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post