How to include all files from a directory in shell script (/etc/init.d/iptables in this case) Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Come Celebrate our 10 Year Anniversary!Is there a way to prevent output from backgrounded tasks from covering the command line in a shell?How to lock user in a shell script program?Call to daemon in a /etc/init.d script is blocking, not running in backgroundchkconfig not starting application script on bootupHow to remove/backup script from /etc/init.d/?Iptables appends rule default after “-A INPUT -j REJECT --reject-with icmp-host-prohibited”How to load the environment variables at boot time before X11 on Ubuntu Precise?How to remove all rules referring to a chain in iptables?How to setup IPTables on KVM host - iptables-persistent is being ignoredLoading iptables rules from /etc/init.d/

Providing direct feedback to a product salesperson

2 sample t test for sample sizes - 30,000 and 150,000

Why does BitLocker not use RSA?

Does traveling In The United States require a passport or can I use my green card if not a US citizen?

Do chord progressions usually move by fifths?

Suing a Police Officer Instead of the Police Department

Determine the generator of an ideal of ring of integers

Kepler's 3rd law: ratios don't fit data

Does using the Inspiration rules for character defects encourage My Guy Syndrome?

"Destructive force" carried by a B-52?

Why not use the yoke to control yaw, as well as pitch and roll?

When does Bran Stark remember Jamie pushing him?

Is "ein Herz wie das meine" an antiquated or colloquial use of the possesive pronoun?

Unix AIX passing variable and arguments to expect and spawn

What is the evidence that custom checks in Northern Ireland are going to result in violence?

Raising a bilingual kid. When should we introduce the majority language?

Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion

Marquee sign letters

What were wait-states, and why was it only an issue for PCs?

Putting Ant-Man on house arrest

Has a Nobel Peace laureate ever been accused of war crimes?

Protagonist's race is hidden - should I reveal it?

Can this water damage be explained by lack of gutters and grading issues?

When speaking, how do you change your mind mid-sentence?



How to include all files from a directory in shell script (/etc/init.d/iptables in this case)



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Come Celebrate our 10 Year Anniversary!Is there a way to prevent output from backgrounded tasks from covering the command line in a shell?How to lock user in a shell script program?Call to daemon in a /etc/init.d script is blocking, not running in backgroundchkconfig not starting application script on bootupHow to remove/backup script from /etc/init.d/?Iptables appends rule default after “-A INPUT -j REJECT --reject-with icmp-host-prohibited”How to load the environment variables at boot time before X11 on Ubuntu Precise?How to remove all rules referring to a chain in iptables?How to setup IPTables on KVM host - iptables-persistent is being ignoredLoading iptables rules from /etc/init.d/



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








6















I have an /etc/init.d/iptables start|stop|restart script on different ubuntu servers (which is a normal shell script)



For each new service I have to edit and insert a line to open a port. This leads to many different versions of the init.d script on different machines.



Is it possible to automatically include let's say all files in /etc/iptables/include.d/ ?



The target is that there should only a line in the start function of /etc/init.d/iptables like



include /etc/iptables/include.d/*


And after an additional file in /etc/iptables/include.d/ I'd simply say



/etc/init.d/iptables restart


Edit: As Saurabh pointed out this can lead to problems when commands need a certain order. An advanced setup could have different directories like:



/etc/iptables/include01.d/
/etc/iptables/include02.d/
/etc/iptables/include03.d/


and including them like this:




include /etc/iptables/include01.d/*
... maybe some code goes here in the main file...
include /etc/iptables/include02.d/*
include /etc/iptables/include03.d/*









share|improve this question






























    6















    I have an /etc/init.d/iptables start|stop|restart script on different ubuntu servers (which is a normal shell script)



    For each new service I have to edit and insert a line to open a port. This leads to many different versions of the init.d script on different machines.



    Is it possible to automatically include let's say all files in /etc/iptables/include.d/ ?



    The target is that there should only a line in the start function of /etc/init.d/iptables like



    include /etc/iptables/include.d/*


    And after an additional file in /etc/iptables/include.d/ I'd simply say



    /etc/init.d/iptables restart


    Edit: As Saurabh pointed out this can lead to problems when commands need a certain order. An advanced setup could have different directories like:



    /etc/iptables/include01.d/
    /etc/iptables/include02.d/
    /etc/iptables/include03.d/


    and including them like this:




    include /etc/iptables/include01.d/*
    ... maybe some code goes here in the main file...
    include /etc/iptables/include02.d/*
    include /etc/iptables/include03.d/*









    share|improve this question


























      6












      6








      6


      4






      I have an /etc/init.d/iptables start|stop|restart script on different ubuntu servers (which is a normal shell script)



      For each new service I have to edit and insert a line to open a port. This leads to many different versions of the init.d script on different machines.



      Is it possible to automatically include let's say all files in /etc/iptables/include.d/ ?



      The target is that there should only a line in the start function of /etc/init.d/iptables like



      include /etc/iptables/include.d/*


      And after an additional file in /etc/iptables/include.d/ I'd simply say



      /etc/init.d/iptables restart


      Edit: As Saurabh pointed out this can lead to problems when commands need a certain order. An advanced setup could have different directories like:



      /etc/iptables/include01.d/
      /etc/iptables/include02.d/
      /etc/iptables/include03.d/


      and including them like this:




      include /etc/iptables/include01.d/*
      ... maybe some code goes here in the main file...
      include /etc/iptables/include02.d/*
      include /etc/iptables/include03.d/*









      share|improve this question
















      I have an /etc/init.d/iptables start|stop|restart script on different ubuntu servers (which is a normal shell script)



      For each new service I have to edit and insert a line to open a port. This leads to many different versions of the init.d script on different machines.



      Is it possible to automatically include let's say all files in /etc/iptables/include.d/ ?



      The target is that there should only a line in the start function of /etc/init.d/iptables like



      include /etc/iptables/include.d/*


      And after an additional file in /etc/iptables/include.d/ I'd simply say



      /etc/init.d/iptables restart


      Edit: As Saurabh pointed out this can lead to problems when commands need a certain order. An advanced setup could have different directories like:



      /etc/iptables/include01.d/
      /etc/iptables/include02.d/
      /etc/iptables/include03.d/


      and including them like this:




      include /etc/iptables/include01.d/*
      ... maybe some code goes here in the main file...
      include /etc/iptables/include02.d/*
      include /etc/iptables/include03.d/*






      linux unix bash iptables shell






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 16 '09 at 10:26







      user12096

















      asked Jul 16 '09 at 9:54









      user12096user12096

      44741838




      44741838




















          6 Answers
          6






          active

          oldest

          votes


















          11














          Add the following line to your init.d script.



          run-parts --report /etc/iptables/include.d


          It will run everything in the directory as a shell script (need to be executable).



          If you you only want to execute files that ends with .port you could use something
          like:



          run-parts --regex '.port$' /etc/iptables/include.d/


          If you want to make sure the order is correct you can name the files:



          10_web.port
          20_ssh.port
          etc..





          share|improve this answer






























            3














            for f in /etc/iptables/include.d/*
            . $f
            done


            note space between dot and %f



            Saurabh is right - this will not necessary work as you intend, but use some naming convention eg 10-xxx, 20-yyy and so on and it might be manageable.






            share|improve this answer























            • i think this is great, because i do not rely on an external command (run-parts)

              – user12096
              Jul 16 '09 at 20:39











            • will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

              – user12096
              Jul 18 '09 at 10:49











            • @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

              – pQd
              Jul 18 '09 at 11:48


















            2














            You can define simple function in bash:



            function include() 
            for FILE in $( find "$1" -type f -print


            and then:



            include some_dir/*


            or even:



            include some_dir/*.conf





            share|improve this answer























            • this is even better than pQd's solution.

              – user12096
              Jul 16 '09 at 20:40


















            2














            You may also consider building the iptables script from template files, one of which would be the original iptables script. create a script which will read your template files in the relevant directories and create a new iptables script from them. That way when you need to make changes you do so in the templates and just rerun your script generator.



            Using this method you could even get fancy and place markers in the base template which can be used to signal when to include files from specific directories in your template tree.






            share|improve this answer






























              0














              I do not think you can include files in iptables configuration. The choice makes sense as firewall rules depend a lot on order in which they are written. If we just include files in folder, iptables wont know which rules to put first and which later.






              share|improve this answer























              • this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                – user12096
                Jul 16 '09 at 10:21


















              0














              To well behave with empty dir include.d/ you can do:



              for f in /etc/iptables/include.d/*; do
              [[ -e "$f" ]] && . "$f"
              done





              share|improve this answer























                Your Answer








                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "2"
                ;
                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',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                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%2fserverfault.com%2fquestions%2f41497%2fhow-to-include-all-files-from-a-directory-in-shell-script-etc-init-d-iptables%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                6 Answers
                6






                active

                oldest

                votes








                6 Answers
                6






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                11














                Add the following line to your init.d script.



                run-parts --report /etc/iptables/include.d


                It will run everything in the directory as a shell script (need to be executable).



                If you you only want to execute files that ends with .port you could use something
                like:



                run-parts --regex '.port$' /etc/iptables/include.d/


                If you want to make sure the order is correct you can name the files:



                10_web.port
                20_ssh.port
                etc..





                share|improve this answer



























                  11














                  Add the following line to your init.d script.



                  run-parts --report /etc/iptables/include.d


                  It will run everything in the directory as a shell script (need to be executable).



                  If you you only want to execute files that ends with .port you could use something
                  like:



                  run-parts --regex '.port$' /etc/iptables/include.d/


                  If you want to make sure the order is correct you can name the files:



                  10_web.port
                  20_ssh.port
                  etc..





                  share|improve this answer

























                    11












                    11








                    11







                    Add the following line to your init.d script.



                    run-parts --report /etc/iptables/include.d


                    It will run everything in the directory as a shell script (need to be executable).



                    If you you only want to execute files that ends with .port you could use something
                    like:



                    run-parts --regex '.port$' /etc/iptables/include.d/


                    If you want to make sure the order is correct you can name the files:



                    10_web.port
                    20_ssh.port
                    etc..





                    share|improve this answer













                    Add the following line to your init.d script.



                    run-parts --report /etc/iptables/include.d


                    It will run everything in the directory as a shell script (need to be executable).



                    If you you only want to execute files that ends with .port you could use something
                    like:



                    run-parts --regex '.port$' /etc/iptables/include.d/


                    If you want to make sure the order is correct you can name the files:



                    10_web.port
                    20_ssh.port
                    etc..






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jul 16 '09 at 10:25









                    rkthkrrkthkr

                    7,7132136




                    7,7132136























                        3














                        for f in /etc/iptables/include.d/*
                        . $f
                        done


                        note space between dot and %f



                        Saurabh is right - this will not necessary work as you intend, but use some naming convention eg 10-xxx, 20-yyy and so on and it might be manageable.






                        share|improve this answer























                        • i think this is great, because i do not rely on an external command (run-parts)

                          – user12096
                          Jul 16 '09 at 20:39











                        • will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

                          – user12096
                          Jul 18 '09 at 10:49











                        • @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

                          – pQd
                          Jul 18 '09 at 11:48















                        3














                        for f in /etc/iptables/include.d/*
                        . $f
                        done


                        note space between dot and %f



                        Saurabh is right - this will not necessary work as you intend, but use some naming convention eg 10-xxx, 20-yyy and so on and it might be manageable.






                        share|improve this answer























                        • i think this is great, because i do not rely on an external command (run-parts)

                          – user12096
                          Jul 16 '09 at 20:39











                        • will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

                          – user12096
                          Jul 18 '09 at 10:49











                        • @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

                          – pQd
                          Jul 18 '09 at 11:48













                        3












                        3








                        3







                        for f in /etc/iptables/include.d/*
                        . $f
                        done


                        note space between dot and %f



                        Saurabh is right - this will not necessary work as you intend, but use some naming convention eg 10-xxx, 20-yyy and so on and it might be manageable.






                        share|improve this answer













                        for f in /etc/iptables/include.d/*
                        . $f
                        done


                        note space between dot and %f



                        Saurabh is right - this will not necessary work as you intend, but use some naming convention eg 10-xxx, 20-yyy and so on and it might be manageable.







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Jul 16 '09 at 10:18









                        pQdpQd

                        25.6k35494




                        25.6k35494












                        • i think this is great, because i do not rely on an external command (run-parts)

                          – user12096
                          Jul 16 '09 at 20:39











                        • will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

                          – user12096
                          Jul 18 '09 at 10:49











                        • @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

                          – pQd
                          Jul 18 '09 at 11:48

















                        • i think this is great, because i do not rely on an external command (run-parts)

                          – user12096
                          Jul 16 '09 at 20:39











                        • will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

                          – user12096
                          Jul 18 '09 at 10:49











                        • @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

                          – pQd
                          Jul 18 '09 at 11:48
















                        i think this is great, because i do not rely on an external command (run-parts)

                        – user12096
                        Jul 16 '09 at 20:39





                        i think this is great, because i do not rely on an external command (run-parts)

                        – user12096
                        Jul 16 '09 at 20:39













                        will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

                        – user12096
                        Jul 18 '09 at 10:49





                        will the order of the files when numbered 10-xxx, 20-yyy be respected automatically by the for f in ?

                        – user12096
                        Jul 18 '09 at 10:49













                        @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

                        – pQd
                        Jul 18 '09 at 11:48





                        @matnagel - should be. if you have any doubts, replace /etc/iptables/include.d/* with ls -1 /etc/iptables/include.d/*.extension - with ls you can control sorting criteria, default one is by name. notice special quote symbol.

                        – pQd
                        Jul 18 '09 at 11:48











                        2














                        You can define simple function in bash:



                        function include() 
                        for FILE in $( find "$1" -type f -print


                        and then:



                        include some_dir/*


                        or even:



                        include some_dir/*.conf





                        share|improve this answer























                        • this is even better than pQd's solution.

                          – user12096
                          Jul 16 '09 at 20:40















                        2














                        You can define simple function in bash:



                        function include() 
                        for FILE in $( find "$1" -type f -print


                        and then:



                        include some_dir/*


                        or even:



                        include some_dir/*.conf





                        share|improve this answer























                        • this is even better than pQd's solution.

                          – user12096
                          Jul 16 '09 at 20:40













                        2












                        2








                        2







                        You can define simple function in bash:



                        function include() 
                        for FILE in $( find "$1" -type f -print


                        and then:



                        include some_dir/*


                        or even:



                        include some_dir/*.conf





                        share|improve this answer













                        You can define simple function in bash:



                        function include() 
                        for FILE in $( find "$1" -type f -print


                        and then:



                        include some_dir/*


                        or even:



                        include some_dir/*.conf






                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Jul 16 '09 at 11:40







                        user13185



















                        • this is even better than pQd's solution.

                          – user12096
                          Jul 16 '09 at 20:40

















                        • this is even better than pQd's solution.

                          – user12096
                          Jul 16 '09 at 20:40
















                        this is even better than pQd's solution.

                        – user12096
                        Jul 16 '09 at 20:40





                        this is even better than pQd's solution.

                        – user12096
                        Jul 16 '09 at 20:40











                        2














                        You may also consider building the iptables script from template files, one of which would be the original iptables script. create a script which will read your template files in the relevant directories and create a new iptables script from them. That way when you need to make changes you do so in the templates and just rerun your script generator.



                        Using this method you could even get fancy and place markers in the base template which can be used to signal when to include files from specific directories in your template tree.






                        share|improve this answer



























                          2














                          You may also consider building the iptables script from template files, one of which would be the original iptables script. create a script which will read your template files in the relevant directories and create a new iptables script from them. That way when you need to make changes you do so in the templates and just rerun your script generator.



                          Using this method you could even get fancy and place markers in the base template which can be used to signal when to include files from specific directories in your template tree.






                          share|improve this answer

























                            2












                            2








                            2







                            You may also consider building the iptables script from template files, one of which would be the original iptables script. create a script which will read your template files in the relevant directories and create a new iptables script from them. That way when you need to make changes you do so in the templates and just rerun your script generator.



                            Using this method you could even get fancy and place markers in the base template which can be used to signal when to include files from specific directories in your template tree.






                            share|improve this answer













                            You may also consider building the iptables script from template files, one of which would be the original iptables script. create a script which will read your template files in the relevant directories and create a new iptables script from them. That way when you need to make changes you do so in the templates and just rerun your script generator.



                            Using this method you could even get fancy and place markers in the base template which can be used to signal when to include files from specific directories in your template tree.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jul 16 '09 at 12:44









                            John GardeniersJohn Gardeniers

                            25k847105




                            25k847105





















                                0














                                I do not think you can include files in iptables configuration. The choice makes sense as firewall rules depend a lot on order in which they are written. If we just include files in folder, iptables wont know which rules to put first and which later.






                                share|improve this answer























                                • this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                                  – user12096
                                  Jul 16 '09 at 10:21















                                0














                                I do not think you can include files in iptables configuration. The choice makes sense as firewall rules depend a lot on order in which they are written. If we just include files in folder, iptables wont know which rules to put first and which later.






                                share|improve this answer























                                • this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                                  – user12096
                                  Jul 16 '09 at 10:21













                                0












                                0








                                0







                                I do not think you can include files in iptables configuration. The choice makes sense as firewall rules depend a lot on order in which they are written. If we just include files in folder, iptables wont know which rules to put first and which later.






                                share|improve this answer













                                I do not think you can include files in iptables configuration. The choice makes sense as firewall rules depend a lot on order in which they are written. If we just include files in folder, iptables wont know which rules to put first and which later.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Jul 16 '09 at 10:17









                                Saurabh BarjatiyaSaurabh Barjatiya

                                4,05712331




                                4,05712331












                                • this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                                  – user12096
                                  Jul 16 '09 at 10:21

















                                • this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                                  – user12096
                                  Jul 16 '09 at 10:21
















                                this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                                – user12096
                                Jul 16 '09 at 10:21





                                this is a good point. thank you for pointing this out. i am updating the question to use several include.d directories, so I can give them an order. I have many services that do not depend on each other and the setup would still make sense in these cases.

                                – user12096
                                Jul 16 '09 at 10:21











                                0














                                To well behave with empty dir include.d/ you can do:



                                for f in /etc/iptables/include.d/*; do
                                [[ -e "$f" ]] && . "$f"
                                done





                                share|improve this answer



























                                  0














                                  To well behave with empty dir include.d/ you can do:



                                  for f in /etc/iptables/include.d/*; do
                                  [[ -e "$f" ]] && . "$f"
                                  done





                                  share|improve this answer

























                                    0












                                    0








                                    0







                                    To well behave with empty dir include.d/ you can do:



                                    for f in /etc/iptables/include.d/*; do
                                    [[ -e "$f" ]] && . "$f"
                                    done





                                    share|improve this answer













                                    To well behave with empty dir include.d/ you can do:



                                    for f in /etc/iptables/include.d/*; do
                                    [[ -e "$f" ]] && . "$f"
                                    done






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Apr 16 at 14:30









                                    keypresskeypress

                                    1666




                                    1666



























                                        draft saved

                                        draft discarded
















































                                        Thanks for contributing an answer to Server Fault!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid


                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.

                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f41497%2fhow-to-include-all-files-from-a-directory-in-shell-script-etc-init-d-iptables%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

                                        Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                                        Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                                        Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070