From 2477cdfbe9474a8657562f10ca18056e7d0d5402 Mon Sep 17 00:00:00 2001 From: "fabrice.regnier" Date: Wed, 30 Nov 2022 19:43:06 +0100 Subject: [PATCH] Initial commit --- .gitignore | 10 + DETAILS.md | 169 ++++++++ LICENSE | 232 ++++++++++ README.md | 90 ++++ Vagrantfile.dist | 93 ++++ clean.sh | 38 ++ doc/images/allServices.jpg | Bin 0 -> 86867 bytes files/.emacs | 48 ++ .../dockerfile-mode/dockerfile-mode.el | 229 ++++++++++ files/10-monitor.conf | 10 + files/clawsmail/addclawsuser.sh | 44 ++ files/clawsmail/claws-mail/accountrc | 106 +++++ files/clawsmail/claws-mail/accountrc.tmpl | 94 ++++ files/clawsmail/claws-mail/clawsrc | 410 ++++++++++++++++++ files/clawsmail/claws-mail/folderlist.xml | 6 + .../clawsmail/claws-mail/folderlist_skel.xml | 10 + files/clawsmail/claws-mail/passwordstorerc | 2 + files/clawsmail/genpasswd | Bin 0 -> 18400 bytes files/clawsmail/genpasswd.c | 333 ++++++++++++++ files/kaz.sh | 78 ++++ files/kaz/config/container-mail.list | 3 + files/kaz/config/container-orga.list | 1 + files/kaz/config/container-proxy.list | 1 + files/kaz/config/container-withMail.list | 9 + files/kaz/config/container-withoutMail.list | 10 + files/kaz/config/dockers.env | 120 +++++ files/keyboard | 10 + files/provision.sh | 315 ++++++++++++++ files/test.html | 15 + init.sh | 162 +++++++ sparsify.sh | 29 ++ 31 files changed, 2677 insertions(+) create mode 100644 .gitignore create mode 100644 DETAILS.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 Vagrantfile.dist create mode 100755 clean.sh create mode 100644 doc/images/allServices.jpg create mode 100644 files/.emacs create mode 100644 files/.emacs.d/dockerfile-mode/dockerfile-mode.el create mode 100644 files/10-monitor.conf create mode 100755 files/clawsmail/addclawsuser.sh create mode 100644 files/clawsmail/claws-mail/accountrc create mode 100644 files/clawsmail/claws-mail/accountrc.tmpl create mode 100644 files/clawsmail/claws-mail/clawsrc create mode 100644 files/clawsmail/claws-mail/folderlist.xml create mode 100644 files/clawsmail/claws-mail/folderlist_skel.xml create mode 100644 files/clawsmail/claws-mail/passwordstorerc create mode 100755 files/clawsmail/genpasswd create mode 100644 files/clawsmail/genpasswd.c create mode 100755 files/kaz.sh create mode 100644 files/kaz/config/container-mail.list create mode 100644 files/kaz/config/container-orga.list create mode 100644 files/kaz/config/container-proxy.list create mode 100644 files/kaz/config/container-withMail.list create mode 100644 files/kaz/config/container-withoutMail.list create mode 100644 files/kaz/config/dockers.env create mode 100644 files/keyboard create mode 100755 files/provision.sh create mode 100644 files/test.html create mode 100755 init.sh create mode 100755 sparsify.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d07c135 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.apt-mirror-config +.customDocker.sh +.proxy-config +.vagrant +DEADJOE +Vagrantfile +/files/log +/files/kaz/download +/files/kaz/git +/files/kaz/log diff --git a/DETAILS.md b/DETAILS.md new file mode 100644 index 0000000..f6ed5a3 --- /dev/null +++ b/DETAILS.md @@ -0,0 +1,169 @@ +# kaz-vagrant + +[Kaz](https://kaz.bzh/) est un CHATONS du Morbihan. Nous proposons ici un moyen de le répliquer dans d'autres lieux. Il y a des éléments de configuration à définir avant d'initialiser ce simulateur. + +Le principe est de faire fonctionner un simulateur de notre CHATONS dans une VirtualBox pour mettre au point nos différents services. + +Nous utilisons : + * Vagrant pour automatiser la création de la Machine Virtuelle + * VirtualBox pour simuler notre serveur + * Docker pour chaque service de notre serveur + +## Pré-requis + +Dans la suite, on imagine que vous disposer d'une machine sous Linux (par exemple dernière version de [Debian](https://fr.wikipedia.org/wiki/Debian)) + +Vous devez disposer d'un minimum de paquets : + +```bash +wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | apt-key add - +wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | apt-key add - +apt install software-properties-common +add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" +apt update +apt install git vagrant virtualbox-6.1 linux-image +vagrant plugin install vagrant-disksize +``` +Lancez VirtualBox et vérifiez les mises à jours. + +Par la suite, si vous ne disposez pas d'un bon débit, il est conseiller d'installer `approx` et `squid` pour ne pas recharger systématiquement tous les paquets depuis l'internet. + +pour `approx`, vous pouvez choisir une partition de stockage `/mnt/big/approx` +```bash +apt-get install approx +netstat -ant | grep 9999 +mkdir /mnt/big/approx +chown -R approx : /mnt/big/approx +rmdir /var/cache/approx +ln -s /mnt/big/approx/ /var/cache/ +cd /etc/apt/ +grep -E "^[^#]" sources.list | cut -d " " -f2 | sort -u >> /etc/approx/approx.conf +``` + +Pour `squid`, vous pouvez choisir une partition de stockage `/mnt/big/squid` + +```bash +apt-get install squid +emacs /etc/squid/squid.conf + +mkdir /mnt/big/squid +chown -R proxy: /mnt/big/squid +rmdir /var/spool/squid/ +ln -s /mnt/big/squid/ /var/spool/squid/ + +/etc/init.d/squid restart +``` + +Si vous utilisez un ordinateur portable, votre adresse IP changera sûrement au grè de vos connexions à l'Internet. Dans ce cas il est préférable d'utiliser une adresse stable pour designer votre mandataire. Après vous êtes connecté, il faudra ajouter une adresse à la carte réseaux qui est active. +Dans l'exemple suivant, nous imaginons que la connexion utilise le wifi `wlo1̀ que nous utilisons une classe privée locale `192.168.128.0/25̀ et que notre machine utilisera la première adresse. + +```bash +/sbin/ifconfig +/sbin/ifconfig wlo1:0 192.168.128.1/25 +/sbin/ifconfig wlo1:0 up +/sbin/ifconfig +``` + +## Installation + +* Télécharger le dépôt kaz-vagrant ou utilisez la commande : +```bash +git clone https://git.kaz.bzh/KAZ/kaz-vagrant.git # pour essayer +git clone git+ssh://git@git.kaz.bzh:2202/KAZ/kaz-vagrant.git # pour contribuer +cd kaz-vagrant/ +``` +* Personalisez votre simulateur avec la commande (au besoin ajustez la mémoire et les cpus utilisés dans Vagrantfile) : +```bash +vagrant plugin install vagrant-disksize +init.sh +``` +* Personnalisez le miroir des paquets Debian si vous en avez un (sinon ignorez cette étape). +Pour cela créez un fichier qui défini des variables d'environnements qui pointent vers l'hôte et le port (dans l'exemple suivant on prend (machine : **__mirror-host__**, port : **__mirror-port__**) dans un fichier `files/.apt-mirror-config` comme ci-dessous +``` +APT_MIRROR_DEBIAN=mirror-host:mirror-port +APT_MIRROR_SECURITY=mirror-host:mirror-port +``` + +VirtualBox utilise un réseau privé 172.17.X.X + +Pour pouvoir désigner dans conflit votre PC comme mirror, vous pouvez déclarer un autre réseau (par exemple 172.19.X.X) +```bash +/sbin/ifconfig (eno2) add 172.19.1.1 netmask 255.255.255.0 +``` +Dans ce cas, il faut refaire le init.sh pour mettre à jour l'adresse IP du serveur mirroir. + + +* Pour créer tout l'univers Kaz il faut se placer dans le répertoire et lancer la commande : +```bash +vagrant up +``` +Il faudra répondre "docker0" à la question "Which interface should the network bridge to?" + + +Il est possible d'interrompre la création à la coquille vide (sans les services) pour des question de mise au point avec la commande : +```bash +NOKAZ="true" vagrant up +``` +Il se peut que le répertoire `/vagrant` ne soit pas monté. Dans ce cas. Quittez la VM et relancez `vagrant up`. + +Il est possible de choisir de tester une autres branche de développement du dépôt de Kaz. +```bash +KAZBRANCH="develop" vagrant up +``` + +* Une fois la commande de création de l'univers, il faut patienter... + +* Après il faut patienter encore un peu si on a pas la fibre ... + +La fenêtre de virtualbox va se lancer et l'installation va se poursuivre + +La progression est visible dans la fenêtre où la commande vagrant est lancée. + +## Utilisation + +Les utilisateurs créés sont + * debian/debian + * root/root. + +Si vous avec laissé la création des dockers, il faut bien attendre la fermeture automatique de la fenêtre et l'apparition de l'écran de connexion (on vous a dit que c'était long). + + +Vous pouvez alors démarrer le client de messagerie clawsmail dans lequel 4 comptes ont été paramétrés (contact1@kaz.local, contact2@kaz.local, contact3@kaz.local, contact4@kaz.local) + +Il y a un aperçu de l'état des services avec l'url https://kaz.local/status/allServices.html + +![status](/doc/images/allServices.jpg) + +Les erreurs 502 correspondent à des fonctions en cours de développement. Les message "Can't open this page" correspond au fait que le services refuse pour des raison de sécurité de de fonctionner embarqué dans une page. + + +Vous pouvez également démarrer firefox avec les URL suivantes: + * https://www.kaz.local + * https://tableur.kaz.local + * https://pad.kaz.local + + * https://depot.kaz.local + * https://agora.kaz.local/login (compte contact1@kaz.local créé, mot de passe toto) + * https://cloud.kaz.local/login (compte contact1@kaz.local créé, mot de passe totototototototo1234 ) + * https://sondage.kaz.local + +Il vous faudra accepter les alertes de sécurité pour certificat absent (web et messagerie) + +## Echanges avec la machine virtuelle + +En cas de nouvelle re-création, la clef privée sera mise à jour. Il faudra effacer l'ancienne pour ne pas avoir le message : +``` +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ +@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ +``` + +Pour cela il faut supprimer l'entrée des hôtes connus : +```bash +ssh-keygen -f ~/.ssh/known_hosts -R "[127.0.0.1]:2222" +``` + +Pour copier des fichiers vers la machine virtuelle : +```bash +rsync -rlptDEHAX --no-o -e "ssh -p 2222 -i ~/git/kaz-vagrant/.vagrant/machines/default/virtualbox/private_key" src vagrant@127.0.0.1:/dst +``` diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d41c0bd --- /dev/null +++ b/LICENSE @@ -0,0 +1,232 @@ +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +“This License” refers to version 3 of the GNU General Public License. + +“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. + +To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. + +A “covered work” means either the unmodified Program or a work based on the Program. + +To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. + +A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. +A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. + +A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +14. Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff --git a/README.md b/README.md new file mode 100644 index 0000000..9f6f7c5 --- /dev/null +++ b/README.md @@ -0,0 +1,90 @@ +# kaz-vagrant + +[Kaz](https://kaz.bzh/) est un CHATONS du Morbihan. Nous proposons ici un moyen de le répliquer dans une VM. Il y a des éléments de configuration à définir avant d'initialiser ce simulateur. + +Le principe est de faire fonctionner un simulateur de notre CHATONS dans une VirtualBox pour mettre au point nos différents services. + +Nous utilisons : + * Vagrant pour automatiser la création de la Machine Virtuelle + * VirtualBox pour simuler notre serveur + * Docker pour chaque service de notre serveur + +## Pré-requis + +Vous avez besoin de [vagrant](https://www.vagrantup.com/), [VirtualBox](https://www.virtualbox.org/) et éventuellement git. + +## Installation + +* Télécharger le dépôt kaz-vagrant ou utilisez la commande git : +```bash +git clone https://git.kaz.bzh/KAZ/kaz-vagrant.git # pour essayer +git clone git+ssh://git@git.kaz.bzh:2202/KAZ/kaz-vagrant.git # pour contribuer +cd kaz-vagrant/ +``` +* Personalisez votre simulateur avec la commande (au besoin ajustez la mémoire et les cpus utilisés dans Vagrantfile) : +```bash +vagrant plugin install vagrant-disksize +./init.sh # vous pouvez laisser les choix par défaut +``` +* Pour créer tout l'univers Kaz il faut se placer dans le répertoire et lancer la commande : +```bash +vagrant up +``` + +Cette étape peut-être (très) longue. Il faudra éventuellement répondre "docker0" à la question "Which interface should the network bridge to?" + + +## Mise au point + +Il est possible d'interrompre la création à la coquille vide (juste la VM sans les services KAZ) pour des question de mise au point avec la commande : +```bash +NOKAZ="true" vagrant up +``` + +Dans ce cas, il faudra ensuite lancer dans la VM : +```bash +/kaz/bin/install.sh +``` + +Pour détruire la VM et recommencer : +```bash +vagrant destroy +``` + + +## Utilisation + +Les utilisateurs créés sont + * debian/debian + * root/root. + +Si vous avec laissé la création des dockers, il faut bien attendre la fermeture automatique de la fenêtre et l'apparition de l'écran de connexion (on vous a dit que c'était long). + +Lors du démarrage de la VM, il faut lancer les conteneurs dans la VM : +```bash +/kaz/bin/container.sh start +``` + +Vous pouvez alors démarrer le client de messagerie clawsmail dans lequel 4 comptes ont été paramétrés (contact1@kaz.local, contact2@kaz.local, contact3@kaz.local, contact4@kaz.local) + +Il y a un aperçu de l'état des services avec l'url https://kaz.local/status/allServices.html + +![status](/doc/images/allServices.jpg) + +Les erreurs 502 correspondent à des fonctions en cours de développement. Les message "Can't open this page" correspond au fait que le services refuse pour des raison de sécurité de de fonctionner embarqué dans une page. + + +Vous pouvez également démarrer firefox avec les URL suivantes: + * https://www.kaz.local + * https://tableur.kaz.local + * https://pad.kaz.local + * https://depot.kaz.local + * https://agora.kaz.local/login (compte contact1@kaz.local créé, mot de passe toto) + * https://cloud.kaz.local/login (compte contact1@kaz.local créé, mot de passe totototototototo1234 ) + * https://sondage.kaz.local + +Il vous faudra accepter les alertes de sécurité pour certificat absent (web et messagerie) + +## Installation avancée + +L'installation avancée, notamment pour utiliser d'autres miroirs ou des caches APT, est décrite dans le fichier [DETAILS.md](DETAILS.md). diff --git a/Vagrantfile.dist b/Vagrantfile.dist new file mode 100644 index 0000000..59fede1 --- /dev/null +++ b/Vagrantfile.dist @@ -0,0 +1,93 @@ +# coding: utf-8 +# -*- mode: ruby -*- +# vi: set ft=ruby : + +unless Vagrant.has_plugin?("vagrant-disksize") + raise Vagrant::Errors::VagrantError.new, "vagrant-disksize plugin is missing. Please install it using 'vagrant plugin install vagrant-disksize' and rerun 'vagrant up'" +end + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + + required_plugins = %w( vagrant-vbguest vagrant-disksize ) + _retry = false + required_plugins.each do |plugin| + unless Vagrant.has_plugin? plugin + system "vagrant plugin install #{plugin}" + _retry=true + end + end + + if (_retry) + exec "vagrant " + ARGV.join(' ') + end + + config.vm.box = "debian/bullseye64" + config.disksize.size = '32GB' + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + # config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "data", "/vagrant_data" + # config.vm.synced_folder "..", "/root/mi-lxc", create:true, type:"rsync", + # rsync__exclude: [".git/", "zzlocal/", "vagrant/"] + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # # Display the VirtualBox GUI when booting the machine + # vb.gui = true + # + # # Customize the amount of memory on the VM: + vb.memory = "4096" + vb.cpus="2" + vb.name = "kaz-dev-amd64" + vb.customize ["modifyvm", :id, "--vram", "64", "--clipboard-mode", "bidirectional", '--graphicscontroller', 'vmsvga', '--natnet1', '192.168.64.0/24'] + vb.gui = true + + end + + # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies + # such as FTP and Heroku are also available. See the documentation at + # https://docs.vagrantup.com/v2/push/atlas.html for more information. + # config.push.define "atlas" do |push| + # push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME" + # end + + # Enable provisioning with a shell script. Additional provisioners such as + # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the + # documentation for more information about their specific syntax and use. + + #permet d'avoir un répertoire partagé entre la VM et le host + config.vm.synced_folder "/tmp/", "/tmp_host" + + config.vm.provision "shell" do |s| + s.inline = "/vagrant/files/provision.sh" + s.env = {"KAZGUARD" => "true", "HOSTLANG" => ENV['LANG'], "NOKAZ" => ENV['NOKAZ'], "KAZBRANCH" => ENV['KAZBRANCH']} + end +end diff --git a/clean.sh b/clean.sh new file mode 100755 index 0000000..7ece2e3 --- /dev/null +++ b/clean.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +cd "$(dirname $0)" + +while : ; do + read -p "Remove vagrant generated files (y/n)? " yn + case "${yn}" in + [yY]*|[Oo]* ) + rm -f Vagrantfile + break;; + ""|[Nn]* ) break;; + * ) echo "Please answer y/n.";; + esac +done + +while : ; do + read -p "Remove proxy generated files (y/n)? " yn + case "${yn}" in + [yY]*|[Oo]* ) + rm -f files/kaz/.apt-mirror-config files/kaz/.proxy-config + rm -f files/.apt-mirror-config files/.proxy-config files/.docker-config.json + break;; + ""|[Nn]* ) break;; + * ) echo "Please answer y/n.";; + esac +done + +while : ; do + read -p "Remove custom generated files (y/n)? " yn + case "${yn}" in + [yY]*|[Oo]* ) + rm -f files/.customDocker.sh + rm -f files/kaz/.customDocker.sh files/local.sh + break;; + ""|[Nn]* ) break;; + * ) echo "Please answer y/n.";; + esac +done diff --git a/doc/images/allServices.jpg b/doc/images/allServices.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df797b0abf450e3a46350300ff91ec208ff0260c GIT binary patch literal 86867 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 construct.") + +(defconst dockerfile--from-regex + (rx "from " (group (+? nonl)) (or " " eol) (? "as " (group (1+ nonl))))) + +(defvar dockerfile-font-lock-keywords + `(,(cons (rx (or line-start "onbuild ") + (group (or "from" "maintainer" "run" "cmd" "expose" "env" "arg" + "add" "copy" "entrypoint" "volume" "user" "workdir" "onbuild" + "label" "stopsignal" "shell" "healthcheck")) + word-boundary) + font-lock-keyword-face) + (,dockerfile--from-regex + (1 'dockerfile-image-name) + (2 'dockerfile-image-alias nil t)) + ,@(sh-font-lock-keywords) + ,@(sh-font-lock-keywords-2) + ,@(sh-font-lock-keywords-1)) + "Default `font-lock-keywords' for `dockerfile mode'.") + +(defvar dockerfile-mode-map + (let ((map (make-sparse-keymap)) + (menu-map (make-sparse-keymap))) + (define-key map "\C-c\C-b" #'dockerfile-build-buffer) + (define-key map "\C-c\M-b" #'dockerfile-build-no-cache-buffer) + (define-key map "\C-c\C-c" #'comment-region) + (define-key map [menu-bar dockerfile-mode] (cons "Dockerfile" menu-map)) + (define-key menu-map [dfc] + '(menu-item "Comment Region" comment-region + :help "Comment Region")) + (define-key menu-map [dfb] + '(menu-item "Build" dockerfile-build-buffer + :help "Send the Dockerfile to docker build")) + (define-key menu-map [dfb] + '(menu-item "Build without cache" dockerfile-build-no-cache-buffer + :help "Send the Dockerfile to docker build without cache")) + map)) + +(defvar dockerfile-mode-syntax-table + (let ((table (make-syntax-table))) + (modify-syntax-entry ?# "<" table) + (modify-syntax-entry ?\n ">" table) + (modify-syntax-entry ?' "\"" table) + (modify-syntax-entry ?= "." table) + table) + "Syntax table for `dockerfile-mode'.") + +(define-abbrev-table 'dockerfile-mode-abbrev-table nil + "Abbrev table used while in `dockerfile-mode'.") + +(unless dockerfile-mode-abbrev-table + (define-abbrev-table 'dockerfile-mode-abbrev-table ())) + +(defun dockerfile-indent-line-function () + "Indent lines in a Dockerfile. +Lines beginning with a keyword are ignored, and any others are +indented by one `tab-width'." + (unless (member (get-text-property (point-at-bol) 'face) + '(font-lock-comment-delimiter-face font-lock-keyword-face)) + (save-excursion + (beginning-of-line) + (skip-chars-forward "[ \t]" (point-at-eol)) + (unless (equal (point) (point-at-eol)) ; Ignore empty lines. + ;; Delete existing whitespace. + (delete-char (- (point-at-bol) (point))) + (indent-to tab-width))))) + +(defun dockerfile-build-arg-string () + "Create a --build-arg string for each element in `dockerfile-build-args'." + (mapconcat (lambda (arg) (concat "--build-arg " (shell-quote-argument arg))) + dockerfile-build-args " ")) + +(defun dockerfile-standard-filename (file) + "Convert the FILE name to OS standard. +If in Cygwin environment, uses Cygwin specific function to convert the +file name. Otherwise, uses Emacs' standard conversion function." + (if (fboundp 'cygwin-convert-file-name-to-windows) + (s-replace "\\" "\\\\" (cygwin-convert-file-name-to-windows file)) + (convert-standard-filename file))) + +(defun dockerfile-tag-string (image-name) + "Return a --tag shell-quoted IMAGE-NAME string or an empty string if image-name is blank." + (if (string= image-name "") "" (format "--tag %s " (shell-quote-argument image-name)))) + +(defvar dockerfile-image-name nil + "Name of the dockerfile currently being used. +This can be set in file or directory-local variables.") +(define-obsolete-variable-alias 'docker-image-name 'dockerfile-image-name) + +(defvar dockerfile-image-name-history nil + "History of image names read by `dockerfile-read-image-name'.") + +(defun dockerfile-read-image-name () + "Read a docker image name." + (read-string "Image name: " dockerfile-image-name 'dockerfile-image-name-history)) + + +;;;###autoload +(defun dockerfile-build-buffer (image-name &optional no-cache) + "Build an image called IMAGE-NAME based upon the buffer. +If prefix arg NO-CACHE is set, don't cache the image. +The build string will be of the format: +`sudo docker build --no-cache --tag IMAGE-NAME --build-args arg1.. -f filename directory`" + + (interactive (list (dockerfile-read-image-name) prefix-arg)) + (save-buffer) + (compilation-start + (format + "%s%s build %s %s %s -f %s %s" + (if dockerfile-use-sudo "sudo " "") + dockerfile-mode-command + (if no-cache "--no-cache" "") + (dockerfile-tag-string image-name) + (dockerfile-build-arg-string) + (shell-quote-argument (dockerfile-standard-filename (buffer-file-name))) + (shell-quote-argument (dockerfile-standard-filename default-directory))) + nil + (lambda (_) (format "*docker-build-output: %s *" image-name)))) + +;;;###autoload +(defun dockerfile-build-no-cache-buffer (image-name) + "Build an image called IMAGE-NAME based upon the buffer without cache." + (interactive (list (dockerfile-read-image-name))) + (dockerfile-build-buffer image-name t)) + +(defun dockerfile--imenu-function () + "Find the previous headline from point. +Search for a FROM instruction. If an alias is used this is +returned, otherwise the base image name is used." + (when (re-search-backward dockerfile--from-regex nil t) + (let ((data (match-data))) + (when (match-string 2) + ;; we drop the first match group because + ;; imenu-generic-expression can only use one offset, so we + ;; normalize to `1'. + (set-match-data (list (nth 0 data) (nth 1 data) (nth 4 data) (nth 5 data)))) + t))) + +;;;###autoload +(define-derived-mode dockerfile-mode prog-mode "Dockerfile" + "A major mode to edit Dockerfiles. +\\{dockerfile-mode-map} +" + (set-syntax-table dockerfile-mode-syntax-table) + (set (make-local-variable 'imenu-generic-expression) + `(("Stage" dockerfile--imenu-function 1))) + (set (make-local-variable 'require-final-newline) mode-require-final-newline) + (set (make-local-variable 'comment-start) "#") + (set (make-local-variable 'comment-end) "") + (set (make-local-variable 'comment-start-skip) "#+ *") + (set (make-local-variable 'parse-sexp-ignore-comments) t) + (set (make-local-variable 'font-lock-defaults) + '(dockerfile-font-lock-keywords nil t)) + (setq local-abbrev-table dockerfile-mode-abbrev-table) + (set (make-local-variable 'indent-line-function) #'dockerfile-indent-line-function)) + +;;;###autoload +(add-to-list 'auto-mode-alist '("Dockerfile\\(?:\\..*\\)?\\'" . dockerfile-mode)) + +(provide 'dockerfile-mode) + +;;; dockerfile-mode.el ends here diff --git a/files/10-monitor.conf b/files/10-monitor.conf new file mode 100644 index 0000000..6eb5be8 --- /dev/null +++ b/files/10-monitor.conf @@ -0,0 +1,10 @@ +Section "ServerFlags" + Option "StandbyTime" "0" + Option "SuspendTime" "0" + Option "OffTime" "0" + Option "BlankTime" "0" +EndSection + +Section "Extensions" + Option "DPMS" "Disable" +EndSection diff --git a/files/clawsmail/addclawsuser.sh b/files/clawsmail/addclawsuser.sh new file mode 100755 index 0000000..81b7e10 --- /dev/null +++ b/files/clawsmail/addclawsuser.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# Configure claws mail +set -e +#if [ -z $KAZGUARD ] ; then exit 1; fi +DIR=`dirname $0` +cd `dirname $0` + +# $domain, $mailname, $password + +name=$1 +domainname=$2 +password=$3 +number=$4 + +# cp -ar claws-mail ~/.claws-mail + +mkdir -p ~/.claws-mail + +cat claws-mail/accountrc > /tmp/accountrc +sed -i -e "s/\$name/$name/" /tmp/accountrc +sed -i -e "s/\$domainname/$domainname/" /tmp/accountrc +sed -i -e "s/\$number/$number/" /tmp/accountrc +cat /tmp/accountrc >> ~/.claws-mail/accountrc + +if [ ! -f ~/.claws-mail/folderlist.xml ]; then + cp claws-mail/folderlist_skel.xml ~/.claws-mail/folderlist.xml +fi + +cat claws-mail/folderlist.xml > /tmp/folderlist.xml +sed -i -e "s/\$name/$name/" /tmp/folderlist.xml +sed -i -e "s/\$domainname/kaz\.bzh/" /tmp/folderlist.xml +sed -i -e "s/\$number/$number/" /tmp/folderlist.xml +sed -i -e "s/<\/folderlist>//" ~/.claws-mail/folderlist.xml +cat /tmp/folderlist.xml >> ~/.claws-mail/folderlist.xml +echo "" >> ~/.claws-mail/folderlist.xml + +cp claws-mail/clawsrc ~/.claws-mail/ + + +# chmod +x genpasswd +pass=`./genpasswd $password` +#gcc genpasswd.c -o genpasswd -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/x86_64-linux-gnu/glib-2.0/include/ -lglib-2.0 -lgnutls + +echo -e "[account:$number]\nrecv $pass" >> ~/.claws-mail/passwordstorerc diff --git a/files/clawsmail/claws-mail/accountrc b/files/clawsmail/claws-mail/accountrc new file mode 100644 index 0000000..3d258d3 --- /dev/null +++ b/files/clawsmail/claws-mail/accountrc @@ -0,0 +1,106 @@ +[Account: $number] +domain=kaz.local +name=$name@$domainname +account_name=IMAP +is_default=1 +address=$name@$domainname +organization= +protocol=1 +receive_server=mail.$domainname +recvtype=3 +smtp_server=smtp.$domainname +nntp_server= +local_mbox=/var/mail +use_mail_command=0 +mail_command=/usr/sbin/sendmail -t -i +use_nntp_auth=0 +use_nntp_auth_onconnect=0 +user_id=$name@$domainname +use_apop_auth=0 +remove_mail=1 +message_leave_time=7 +message_leave_hour=0 +enable_size_limit=0 +size_limit=1024 +filter_on_receive=1 +filterhook_on_receive=1 +imap_auth_method=0 +receive_at_get_all=1 +max_news_articles=300 +inbox=#mh/Mailbox/inbox +local_inbox=#mh/Mailbox/inbox +imap_directory= +imap_subsonly=1 +low_bandwidth=0 +generate_msgid=1 +generate_xmailer=1 +add_custom_header=0 +msgid_with_addr=0 +use_smtp_auth=0 +smtp_auth_method=0 +smtp_user_id= +pop_before_smtp=0 +pop_before_smtp_timeout=5 +signature_type=0 +signature_path=/home/debian/.signature +auto_signature=1 +signature_separator=-- +set_autocc=0 +auto_cc= +set_autobcc=0 +auto_bcc= +set_autoreplyto=0 +auto_replyto= +enable_default_dictionary=0 +default_dictionary= +enable_default_alt_dictionary=0 +default_alt_dictionary= +compose_with_format=0 +compose_subject_format= +compose_body_format= +reply_with_format=0 +reply_quotemark= +reply_body_format= +forward_with_format=0 +forward_quotemark= +forward_body_format= +default_privacy_system= +default_encrypt=0 +default_encrypt_reply=1 +default_sign=0 +default_sign_reply=1 +save_clear_text=0 +encrypt_to_self=0 +privacy_prefs= +ssl_pop=0 +ssl_imap=0 +ssl_nntp=0 +ssl_smtp=0 +ssl_certs_auto_accept=0 +use_nonblocking_ssl=1 +in_ssl_client_cert_file= +out_ssl_client_cert_file= +set_smtpport=0 +smtp_port=25 +set_popport=0 +pop_port=110 +set_imapport=0 +imap_port=143 +set_nntpport=0 +nntp_port=119 +set_domain=0 +domain= +gnutls_set_priority=0 +gnutls_priority= +set_tunnelcmd=0 +tunnelcmd= +mark_crosspost_read=0 +crosspost_color=0 +set_sent_folder=0 +sent_folder= +set_queue_folder=0 +queue_folder= +set_draft_folder=0 +draft_folder= +set_trash_folder=0 +trash_folder= diff --git a/files/clawsmail/claws-mail/accountrc.tmpl b/files/clawsmail/claws-mail/accountrc.tmpl new file mode 100644 index 0000000..25454fc --- /dev/null +++ b/files/clawsmail/claws-mail/accountrc.tmpl @@ -0,0 +1,94 @@ +[AccountTemplate] +#you can use $DEFAULTDOMAIN here +#domain must be defined before the variables that use it +#by default, domain is extracted from the hostname +#domain= + +#you can use $USERNAME for name (this is the default) +#name= + +#you can use $LOGIN, $NAME_MAIL and $DOMAIN here +#$NAME_MAIL is the name without uppercase and with dots instead +#of spaces +#the default is $NAME_MAIL@$DOMAIN +#email= + +#you can use $DOMAIN here +#the default organization is empty +#organization= + +#you can use $DOMAIN here +#the default is smtp.$DOMAIN +#smtpserver= + +#Whether to use smtp authentication +#the default is 0 (no) +#smtpauth= + +#SMTP username +#you can use $LOGIN, $NAME_MAIL, $DOMAIN or $EMAIL here +#the default is empty (same as reception username) +#smtpuser= + +#SMTP password +#the default is empty (same as reception password) +#smtppass= + +#recvtype can be: +#0 for pop3 +#3 for imap +#5 for a local mbox file +#recvtype= + +#you can use $DOMAIN here +#the default is {pop,imap}.$DOMAIN +#recvserver= + +#you can use $LOGIN, $NAME_MAIL, $DOMAIN or $EMAIL here +#default is $LOGIN +#recvuser= + +#default is empty +#recvpass= + +#imap dir if imap (relative to the home on the server) +#default is empty +#imapdir= + +#show subscribed folders only, if imap +#default is TRUE +#subsonly= + +#mbox file if local +#you can use $LOGIN here +#default is /var/mail/$LOGIN +#mboxfile= + +#mailbox name if pop3 or local +#relative path from the user's home +#default is "Mail" +#mailbox= + +#whether to use encryption on SMTP connections +#default is 0, 1 is SSL/TLS, 2 is STARTTLS +#smtpssl= + +#whether to use encryption on POP3 or IMAP connections +#default is 0, 1 is SSL/TLS, 2 is STARTTLS +#recvssl= + +#SSL/TLS client certificate path for SMTP +#default is empty (no certificate) +#smtpssl_cert= + +#SSL/TLS client certificate path for POP/IMAP +#default is empty (no certificate) +#recvssl_cert= + +#SSL/TLS client certificate password for SMTP +#default is empty (no password) +#smtpssl_cert_pass= + +#SSL/TLS client certificate password for POP/IMAP +#default is empty (no password) +#recvssl_cert_pass= diff --git a/files/clawsmail/claws-mail/clawsrc b/files/clawsmail/claws-mail/clawsrc new file mode 100644 index 0000000..796ecdc --- /dev/null +++ b/files/clawsmail/claws-mail/clawsrc @@ -0,0 +1,410 @@ +[Common] +config_version=2 +use_ext_inc=0 +ext_inc_path=/usr/bin/mh/inc +autochk_newmail=0 +autochk_interval=600 +check_on_startup=0 +open_inbox_on_inc=0 +scan_all_after_inc=0 +newmail_notify_manu=0 +newmail_notify_auto=0 +newmail_notify_cmd= +receive_dialog_mode=2 +receivewin_width=460 +receivewin_height=-1 +no_receive_error_panel=0 +close_receive_dialog=1 +save_message=1 +confirm_send_queued_messages=0 +send_dialog_mode=0 +sendwin_width=460 +sendwin_height=-1 +outgoing_charset=AUTO +encoding_method=0 +outgoing_fallback_to_ascii=1 +rewrite_first_from=1 +warn_empty_subj=1 +hide_timezone=0 +allow_jisx0201_kana=0 +auto_ext_editor=0 +forward_as_attachment=0 +redirect_keep_from=0 +undo_level=50 +compose_with_format=0 +compose_subject_format= +compose_body_format=Hello,\n +show_compose_margin=0 +type_any_header=0 +linewrap_length=72 +linewrap_quotation=1 +linewrap_pastes=1 +primary_paste_unselects=0 +linewrap_auto=1 +auto_indent=1 +autosave=1 +autosave_length=50 +autosave_encrypted=0 +warn_large_insert=1 +warn_large_insert_size=500 +enable_aspell=0 +dictionary=fr_FR +alt_dictionary= +use_alternate_dict=0 +check_while_typing=1 +recheck_when_changing_dict=1 +misspelled_color=#ff0000 +use_both_dicts=0 +reply_with_quote=1 +compose_dnd_insert_or_attach=0 +reply_account_autoselect=1 +forward_account_autoselect=1 +reedit_account_autoselect=1 +default_reply_list=1 +show_ruler=1 +reply_quote_mark=> +reply_quote_format=On %d\n%f wrote:\n\n%q\n%X +forward_quote_mark=> +forward_quote_format=\n\nBegin forwarded message:\n\n?d{Date: %d\n}?f{From: %f\n}?t{To: %t\n}?c{Cc: %c\n}?n{Newsgroups: %n\n}?s{Subject: %s\n}\n\n%M +quote_chars=> +widget_font= +message_font=-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-* +small_font=-*-helvetica-medium-r-normal--10-*-*-*-*-*-*-* +bold_font=-*-helvetica-bold-r-normal--12-*-*-*-*-*-*-* +normal_font=-*-helvetica-medium-r-normal--12-*-*-*-*-*-*-* +widget_font_gtk2= +message_font_gtk2=Monospace 10 +print_font_gtk2=Monospace 9 +small_font_gtk2=Sans 10 +normal_font_gtk2=Sans 10 +bold_font_gtk2=Sans Bold 10 +use_different_print_font=0 +derive_from_normal_font=1 +custom_color1=#ff9900 +custom_colorlabel1=Orange +custom_color2=#ff0000 +custom_colorlabel2=Red +custom_color3=#ff66ff +custom_colorlabel3=Pink +custom_color4=#00ccff +custom_colorlabel4=Sky blue +custom_color5=#0000ff +custom_colorlabel5=Blue +custom_color6=#009900 +custom_colorlabel6=Green +custom_color7=#663333 +custom_colorlabel7=Brown +custom_color8=#aaaaaa +custom_colorlabel8=Grey +custom_color9=#c07254 +custom_colorlabel9=Light brown +custom_color10=#c00000 +custom_colorlabel10=Dark red +custom_color11=#cc1074 +custom_colorlabel11=Dark pink +custom_color12=#5094cd +custom_colorlabel12=Steel blue +custom_color13=#ffd500 +custom_colorlabel13=Gold +custom_color14=#00d800 +custom_colorlabel14=Bright green +custom_color15=#c060c0 +custom_colorlabel15=Magenta +display_image=1 +resize_image=1 +inline_image=1 +display_folder_unread_num=0 +newsgroup_abbrev_len=16 +translate_header=0 +default_sort_key=3 +default_sort_type=1 +use_address_book=0 +thread_by_subject=1 +date_format=%a %x %H:%M +msgview_date_format=0 +next_on_delete=0 +bold_unread=1 +enable_thread=1 +toolbar_style=3 +toolbar_detachable=0 +show_col_headers=1 +show_statusbar=1 +show_searchbar=1 +summary_col_show_mark=1 +summary_col_show_unread=1 +summary_col_show_subject=1 +summary_col_show_from=1 +summary_col_show_to=0 +summary_col_show_date=1 +summary_col_show_mime=1 +summary_col_show_size=1 +summary_col_show_number=0 +summary_col_show_score=0 +summary_col_show_locked=0 +summary_col_show_tags=0 +summary_col_pos_mark=0 +summary_col_pos_unread=1 +summary_col_pos_mime=2 +summary_col_pos_subject=3 +summary_col_pos_from=4 +summary_col_pos_date=5 +summary_col_pos_size=6 +summary_col_pos_number=7 +summary_col_pos_score=8 +summary_col_pos_locked=9 +summary_col_pos_to=10 +summary_col_pos_tags=11 +summary_col_size_mark=10 +summary_col_size_unread=13 +summary_col_size_mime=10 +summary_col_size_subject=200 +summary_col_size_from=120 +summary_col_size_to=120 +summary_col_size_date=118 +summary_col_size_size=45 +summary_col_size_number=40 +summary_col_size_score=40 +summary_col_size_locked=13 +summary_col_size_tags=150 +folderwin_x=16 +folderwin_y=16 +folderview_width=270 +folderview_height=493 +folderview_visible=1 +folder_col_show_folder=1 +folder_col_show_new=1 +folder_col_show_unread=1 +folder_col_show_total=1 +folder_col_pos_folder=0 +folder_col_pos_new=1 +folder_col_pos_unread=2 +folder_col_pos_total=3 +folder_col_size_folder=120 +folder_col_size_new=32 +folder_col_size_unread=32 +folder_col_size_total=32 +summaryview_width=523 +summaryview_height=262 +main_messagewin_x=256 +main_messagewin_y=210 +messageview_width=523 +messageview_height=228 +messageview_visible=1 +mainview_x=350 +mainview_y=58 +mainview_width=523 +mainview_height=600 +mainwin_x=350 +mainwin_y=58 +mainwin_maximised=0 +mainwin_fullscreen=0 +mainwin_menubar=1 +mainwin_width=800 +mainwin_height=600 +messagewin_width=600 +messagewin_height=540 +mimeview_tree_height=60 +sourcewin_width=600 +sourcewin_height=500 +compose_width=600 +compose_height=560 +compose_notebook_height=130 +compose_x=0 +compose_y=0 +enable_color=1 +quote_level1_color=#0000b3 +quote_level2_color=#0000b3 +quote_level3_color=#0000b3 +enable_bgcolor=0 +quote_level1_bgcolor=#cccccc +quote_level2_bgcolor=#d4d4d4 +quote_level3_bgcolor=#dddddd +uri_color=#007f00 +emphasis_color=#0000cf +target_folder_color=#da1cca +signature_color=#797979 +recycle_quote_colors=0 +display_header_pane=0 +display_header=1 +display_xface=1 +render_html=1 +invoke_plugin_on_html=0 +promote_html_part=0 +line_space=2 +never_send_retrcpt=0 +enable_smooth_scroll=0 +scroll_step=1 +scroll_half_page=0 +hide_quoted=1 +respect_flowed_format=0 +show_all_headers=0 +show_other_header=0 +attach_desc=1 +attach_save_directory= +attach_load_directory= +mime_textviewer= +mime_open_command=gedit '%s' +show_inline_attachments=1 +layout_mode=0 +always_show_message_when_selected=0 +select_on_entry=3 +show_tooltips=1 +summary_select_prio1=2 +summary_select_prio2=3 +summary_select_prio3=1 +summary_select_prio4=5 +summary_select_prio5=0 +summary_select_prio6=0 +summary_select_prio7=0 +mark_as_read_on_new_window=0 +mark_as_read_delay=0 +immediate_execution=1 +nextunreadmsg_dialog=1 +summary_from_show=0 +pixmap_theme_path=INTERNAL_DEFAULT +ask_mark_all_read=1 +ask_apply_per_account_filtering_rules=1 +apply_per_account_filtering_rules=0 +addressbook_use_editaddress_dialog=1 +addressbook_hpaned_pos=-1 +addressbook_vpaned_pos=-1 +uri_open_command=firefox '%s' +ext_editor_command=gedit '%s' +cmds_use_system_default=1 +add_address_by_click=0 +session_passwords=0 +confirm_on_exit=0 +clean_trash_on_exit=0 +ask_on_cleaning=1 +warn_queued_on_exit=1 +work_offline=0 +summary_quicksearch_type=0 +summary_quicksearch_recurse=1 +io_timeout_secs=60 +hide_score=-9999 +important_score=1 +clip_log=1 +log_length=500 +enable_log_standard=1 +enable_log_warning=1 +enable_log_error=1 +enable_log_status=1 +log_msg_color=#00af00 +log_warn_color=#af0000 +log_error_color=#af0000 +log_in_color=#000000 +log_out_color=#0000ef +log_status_ok_color=#00af00 +log_status_nok_color=#0000af +log_status_skip_color=#aa00aa +enable_filtering_debug=0 +filtering_debug_level=1 +enable_filtering_debug_inc=1 +enable_filtering_debug_manual=1 +enable_filtering_debug_folder_proc=0 +enable_filtering_debug_pre_proc=0 +enable_filtering_debug_post_proc=0 +filtering_debug_clip_log=1 +filtering_debug_log_length=500 +gtk_can_change_accels=0 +color_new=#0000b3 +filteringwin_width=500 +filteringwin_height=-1 +filteringactionwin_width=490 +filteringactionwin_height=-1 +matcherwin_width=520 +matcherwin_height=-1 +templateswin_width=480 +templateswin_height=-1 +actionswin_width=486 +actionswin_height=-1 +tagswin_width=486 +tagswin_height=-1 +addressbookwin_width=520 +addressbookwin_height=-1 +addressbookeditpersonwin_width=640 +addressbookeditpersonwin_height=320 +addressbookeditgroupwin_width=580 +addressbookeditgroupwin_height=340 +pluginswin_width=-1 +pluginswin_height=-1 +prefswin_width=600 +prefswin_height=-1 +folderitemwin_width=500 +folderitemwin_height=-1 +zero_replacement_char=0 +editaccountwin_width=500 +editaccountwin_height=-1 +accountswin_width=500 +accountswin_height=-1 +logwin_width=520 +logwin_height=-1 +filtering_debugwin_width=600 +filtering_debugwin_height=-1 +folderselwin_width=300 +folderselwin_height=-1 +addressaddwin_width=300 +addressaddwin_height=-1 +addressbook_folderselwin_width=300 +addressbook_folderselwin_height=-1 +aboutwin_width=450 +aboutwin_height=500 +addrgather_width=450 +addrgather_height=-1 +news_subscribe_width=450 +news_subscribe_height=400 +warn_dnd=1 +utf8_instead_of_locale_for_broken_mail=0 +enable_swap_from=0 +use_stripes_everywhere=1 +use_stripes_in_summaries=1 +stripes_color_offset=4000 +enable_hscrollbar=1 +folderview_vscrollbar_policy=0 +textview_cursor_visible=0 +hover_timeout=500 +cache_max_mem_usage=4096 +cache_min_keep_time=15 +thread_by_subject_max_age=10 +last_opened_folder=#imap/hacker@isp-a.milxc/Trash +goto_last_folder_on_startup=0 +summary_quicksearch_sticky=1 +summary_quicksearch_dynamic=0 +summary_quicksearch_autorun=0 +statusbar_update_step=10 +compose_no_markup=0 +skip_ssl_cert_check=0 +live_dangerously=0 +save_parts_readwrite=0 +hide_quotes=0 +unsafe_ssl_certs=0 +real_time_sync=0 +print_paper_type= +print_paper_orientation=0 +print_margin_top=-1 +print_margin_bottom=-1 +print_margin_left=-1 +print_margin_right=-1 +print_use_color=0 +print_use_collate=0 +print_use_reverse=0 +print_use_duplex=0 +print_imgs=1 +print_previewwin_width=600 +print_previewwin_height=-1 +use_networkmanager=1 +use_shred=0 +two_line_vertical=1 +inherit_folder_properties=0 +flush_metadata=1 +nav_history_length=50 +diff_added_color=#008b8b +diff_deleted_color=#6a5acd +diff_hunk_color=#a52a2a +folder_search_wildcard=1 +address_search_wildcard=1 +enable_avatars=3 +use_master_passphrase=0 +master_passphrase= +master_passphrase_salt=uO5gxcSFnCOAN3ESLXOZyqoz3aJemnEKsaaxqPtD5zyrigsCfpqE7ahXNY4N9A3qnEIBv/3PAqxeTUq9VrKr9g== +master_passphrase_pbkdf2_rounds=50000 diff --git a/files/clawsmail/claws-mail/folderlist.xml b/files/clawsmail/claws-mail/folderlist.xml new file mode 100644 index 0000000..fdbcf92 --- /dev/null +++ b/files/clawsmail/claws-mail/folderlist.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/files/clawsmail/claws-mail/folderlist_skel.xml b/files/clawsmail/claws-mail/folderlist_skel.xml new file mode 100644 index 0000000..ea6d920 --- /dev/null +++ b/files/clawsmail/claws-mail/folderlist_skel.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/files/clawsmail/claws-mail/passwordstorerc b/files/clawsmail/claws-mail/passwordstorerc new file mode 100644 index 0000000..adba2a9 --- /dev/null +++ b/files/clawsmail/claws-mail/passwordstorerc @@ -0,0 +1,2 @@ +[account:1] +recv $password diff --git a/files/clawsmail/genpasswd b/files/clawsmail/genpasswd new file mode 100755 index 0000000000000000000000000000000000000000..394aa1cb29dd771a39beea957bdc5e4e34c71a06 GIT binary patch literal 18400 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 literal 0 HcmV?d00001 diff --git a/files/clawsmail/genpasswd.c b/files/clawsmail/genpasswd.c new file mode 100644 index 0000000..e4d03c8 --- /dev/null +++ b/files/clawsmail/genpasswd.c @@ -0,0 +1,333 @@ +/* customized from claws mail source code */ + +/* pkcs5_pbkdf2.c - Password-Based Key Derivation Function 2 + * Copyright (c) 2008 Damien Bergamini + * + * Modifications for Claws Mail are: + * Copyright (c) 2016 the Claws Mail team + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + /* + * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client + * Copyright (C) 2016 The Claws Mail Team + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + + + +#include +#include + +#include +#include +#include +#include + +#define CHECKSUM_BLOCKLEN 64 +/* + * HMAC-SHA-1 (from RFC 2202). + */ +static void +hmac_sha1(const guchar *text, size_t text_len, const guchar *key, + size_t key_len, guchar *digest) +{ + GChecksum *cksum; + gssize digestlen = g_checksum_type_get_length(G_CHECKSUM_SHA1); + gsize outlen; + guchar k_pad[CHECKSUM_BLOCKLEN]; + guchar tk[digestlen]; + gint i; + + if (key_len > CHECKSUM_BLOCKLEN) { + cksum = g_checksum_new(G_CHECKSUM_SHA1); + g_checksum_update(cksum, key, key_len); + outlen = digestlen; + g_checksum_get_digest(cksum, tk, &outlen); + g_checksum_free(cksum); + + key = tk; + key_len = digestlen; + } + + memset(k_pad, 0, sizeof k_pad); + memcpy(k_pad, key, key_len); + for (i = 0; i < CHECKSUM_BLOCKLEN; i++) + k_pad[i] ^= 0x36; + + cksum = g_checksum_new(G_CHECKSUM_SHA1); + g_checksum_update(cksum, k_pad, CHECKSUM_BLOCKLEN); + g_checksum_update(cksum, text, text_len); + outlen = digestlen; + g_checksum_get_digest(cksum, digest, &outlen); + g_checksum_free(cksum); + + memset(k_pad, 0, sizeof k_pad); + memcpy(k_pad, key, key_len); + for (i = 0; i < CHECKSUM_BLOCKLEN; i++) + k_pad[i] ^= 0x5c; + + cksum = g_checksum_new(G_CHECKSUM_SHA1); + g_checksum_update(cksum, k_pad, CHECKSUM_BLOCKLEN); + g_checksum_update(cksum, digest, digestlen); + outlen = digestlen; + g_checksum_get_digest(cksum, digest, &outlen); + g_checksum_free(cksum); +} + +#undef CHECKSUM_BLOCKLEN + +/* + * Password-Based Key Derivation Function 2 (PKCS #5 v2.0). + * Code based on IEEE Std 802.11-2007, Annex H.4.2. + */ +gint +pkcs5_pbkdf2(const gchar *pass, size_t pass_len, const guchar *salt, + size_t salt_len, guchar *key, size_t key_len, guint rounds) +{ + gssize digestlen = g_checksum_type_get_length(G_CHECKSUM_SHA1); + guchar *asalt, obuf[digestlen]; + guchar d1[digestlen], d2[digestlen]; + guint i, j; + guint count; + size_t r; + + if (pass == NULL || salt == NULL || key == NULL) + return -1; + if (rounds < 1 || key_len == 0) + return -1; + if (salt_len == 0 || salt_len > SIZE_MAX - 4) + return -1; + if ((asalt = malloc(salt_len + 4)) == NULL) + return -1; + + memcpy(asalt, salt, salt_len); + + for (count = 1; key_len > 0; count++) { + asalt[salt_len + 0] = (count >> 24) & 0xff; + asalt[salt_len + 1] = (count >> 16) & 0xff; + asalt[salt_len + 2] = (count >> 8) & 0xff; + asalt[salt_len + 3] = count & 0xff; + hmac_sha1(asalt, salt_len + 4, pass, pass_len, d1); + memcpy(obuf, d1, sizeof(obuf)); + + for (i = 1; i < rounds; i++) { + hmac_sha1(d1, sizeof(d1), pass, pass_len, d2); + memcpy(d1, d2, sizeof(d1)); + for (j = 0; j < sizeof(obuf); j++) + obuf[j] ^= d1[j]; + } + + r = MIN(key_len, digestlen); + memcpy(key, obuf, r); + key += r; + key_len -= r; + }; + memset(asalt, 0, salt_len + 4); + free(asalt); + memset(d1, 0, sizeof(d1)); + memset(d2, 0, sizeof(d2)); + memset(obuf, 0, sizeof(obuf)); + + return 0; +} + + + + + + + +// + + +# include +# include + +#include +#include + +#include + +/* Length of stored key derivation, before base64. */ +#define KD_LENGTH 64 + +/* Length of randomly generated and saved salt, used for key derivation. + * Also before base64. */ +#define KD_SALT_LENGTH 64 + +char* monsalt; + +int get_random_bytes(char* dst, int len) { + return 1; +} + +static void _generate_salt() +{ + guchar salt[KD_SALT_LENGTH]; + + if (!get_random_bytes(salt, KD_SALT_LENGTH)) { + printf("Could not get random bytes for kd salt.\n"); + return; + } + + monsalt = g_base64_encode(salt, KD_SALT_LENGTH); +} + +#undef KD_SALT_LENGTH + +static guchar *_make_key_deriv(const gchar *passphrase, guint rounds, + guint length) +{ + guchar *kd, *salt; + gchar *saltpref = "uO5gxcSFnCOAN3ESLXOZyqoz3aJemnEKsaaxqPtD5zyrigsCfpqE7ahXNY4N9A3qnEIBv/3PAqxeTUq9VrKr9g=="; + gsize saltlen; + gint ret; + + /* Grab our salt, generating and saving a new random one if needed. */ + if (saltpref == NULL || strlen(saltpref) == 0) { + _generate_salt(); + saltpref = "uO5gxcSFnCOAN3ESLXOZyqoz3aJemnEKsaaxqPtD5zyrigsCfpqE7ahXNY4N9A3qnEIBv/3PAqxeTUq9VrKr9g=="; + } + salt = g_base64_decode(saltpref, &saltlen); + kd = g_malloc0(length); + + //START_TIMING("PBKDF2"); + ret = pkcs5_pbkdf2(passphrase, strlen(passphrase), salt, saltlen, + kd, length, rounds); + //END_TIMING(); + + g_free(salt); + + if (ret == 0) { + return kd; + } + + g_free(kd); + return NULL; +} + +#define BUFSIZE 128 +#define IVLEN 16 +gchar *password_encrypt_gnutls(const gchar *password, + const gchar *encryption_passphrase) +{ + gnutls_cipher_algorithm_t algo = GNUTLS_CIPHER_AES_256_CBC; + gnutls_cipher_hd_t handle; + gnutls_datum_t key, iv; + int keylen, blocklen, ret, len, i; + unsigned char *buf, *encbuf, *base, *output; + guint rounds = 5000; + + g_return_val_if_fail(password != NULL, NULL); + g_return_val_if_fail(encryption_passphrase != NULL, NULL); + +/* ivlen = gnutls_cipher_get_iv_size(algo);*/ + keylen = gnutls_cipher_get_key_size(algo); + blocklen = gnutls_cipher_get_block_size(algo); +/* digestlen = gnutls_hash_get_len(digest); */ + + /* Take the passphrase and compute a key derivation of suitable + * length to be used as encryption key for our block cipher. */ + key.data = _make_key_deriv(encryption_passphrase, rounds, keylen); + key.size = keylen; + + /* Prepare random IV for cipher */ + iv.data = malloc(IVLEN); + iv.size = IVLEN; + if (!get_random_bytes(iv.data, IVLEN)) { + g_free(key.data); + g_free(iv.data); + return NULL; + } + + /* Initialize the encryption */ + ret = gnutls_cipher_init(&handle, algo, &key, &iv); + if (ret < 0) { + g_free(key.data); + g_free(iv.data); + return NULL; + } + + /* Find out how big buffer (in multiples of BUFSIZE) + * we need to store the password. */ + i = 1; + len = strlen(password); + while(len >= i * BUFSIZE) + i++; + len = i * BUFSIZE; + + /* Fill buf with one block of random data, our password, pad the + * rest with zero bytes. */ + buf = malloc(len + blocklen); + memset(buf, 0, len + blocklen); + if (!get_random_bytes(buf, blocklen)) { + g_free(buf); + g_free(key.data); + g_free(iv.data); + gnutls_cipher_deinit(handle); + return NULL; + } + + memcpy(buf + blocklen, password, strlen(password)); + + /* Encrypt into encbuf */ + encbuf = malloc(len + blocklen); + memset(encbuf, 0, len + blocklen); + ret = gnutls_cipher_encrypt2(handle, buf, len + blocklen, + encbuf, len + blocklen); + if (ret < 0) { + g_free(key.data); + g_free(iv.data); + g_free(buf); + g_free(encbuf); + gnutls_cipher_deinit(handle); + return NULL; + } + + /* Cleanup */ + gnutls_cipher_deinit(handle); + g_free(key.data); + g_free(iv.data); + g_free(buf); + + /* And finally prepare the resulting string: + * "{algorithm,rounds}base64encodedciphertext" */ + base = g_base64_encode(encbuf, len + blocklen); + //printf("base is %s\n", base); + g_free(encbuf); + output = g_strdup_printf("{%s,%d}%s", + gnutls_cipher_get_name(algo), rounds, base); + g_free(base); + //printf(output); + return output; +} + +int main(int argc, char* argv[]) { + //printf("pass %s %s\n", password_encrypt_gnutls("totfrefrgo", "passkey0"), gnutls_cipher_get_name(GNUTLS_CIPHER_AES_256_CBC)); + printf(password_encrypt_gnutls(argv[1], "passkey0")); + //printf(argv[1]); +} diff --git a/files/kaz.sh b/files/kaz.sh new file mode 100755 index 0000000..84d74a3 --- /dev/null +++ b/files/kaz.sh @@ -0,0 +1,78 @@ +#!/bin/bash +if [ -z "${KAZGUARD}" ] ; then + exit 1 +fi + +DIR=$(cd "$(dirname $0)"; pwd) +cd "${DIR}" +set -e +export VAGRANT_SRC_DIR=/vagrant/files + +mkdir -p "${VAGRANT_SRC_DIR}/log/" +export DebugLog="${VAGRANT_SRC_DIR}/log/log-kaz-$(date +%y-%m-%d-%T)-" +( + echo "########## ********** Start kaz.sh $(date +%D-%T)" + #pour la résolution de noms dans /etc/hosts + SERVICES_LIST="smtp mail ldap www depot tableur pad webmail sondage garradin test-garradin wiki git agora cloud office cachet quotas" + + docker-clean -a + rm -rf /kaz + + if [ -z "${KAZBRANCH}" ] ; then + KAZBRANCH="master" + fi + echo -e "\n #### git checkout ${KAZBRANCH}\n" + + + # copie des sources + cd / + [ -f kaz ] || git clone https://git.kaz.bzh/KAZ/kaz.git + (cd /kaz ; git checkout "${KAZBRANCH}" ) + find /kaz -name \*.sh -exec chmod a+x {} \; + + # pour ceux qui disposent d'un cache apt local et pas la fibre + if [ -f "${VAGRANT_SRC_DIR}/.apt-mirror-config" ]; then + rsync -a "${VAGRANT_SRC_DIR}/.apt-mirror-config" /kaz/ + fi + if [ -f "${VAGRANT_SRC_DIR}/.proxy-config" ]; then + rsync -a "${VAGRANT_SRC_DIR}/.proxy-config" /etc/profile.d/proxy.sh + rsync -a "${VAGRANT_SRC_DIR}/.proxy-config" /kaz/ + fi + if [ -f "${VAGRANT_SRC_DIR}/.docker-config.json" ]; then + mkdir -p /root/.docker + rsync -a "${VAGRANT_SRC_DIR}/.docker-config.json" /root/.docker/config.json + fi + + + + echo -e "\n #### rsync download\n" + [ -d "${VAGRANT_SRC_DIR}/kaz/download" ] && + rsync -a "${VAGRANT_SRC_DIR}/kaz/download/" /kaz/download/ + [ -d "${VAGRANT_SRC_DIR}/kaz/git" ] && + rsync -a "${VAGRANT_SRC_DIR}/kaz/git/" /kaz/git/ + [ -f "${VAGRANT_SRC_DIR}/kaz/config/dockers.env" ] && + [ ! -f "/kaz/config/dockers.env" ] && + rsync -a "${VAGRANT_SRC_DIR}/kaz/config/dockers.env" /kaz/config/dockers.env + for type in mail orga proxy withMail withoutMail ; do + [ -f "${VAGRANT_SRC_DIR}/kaz/config/container-${type}.list" ] && + [ ! -f "/kaz/config/config/container-${type}.list" ] && + rsync -a "${VAGRANT_SRC_DIR}/kaz/config/container-${type}.list" /kaz/config/ + done + + echo -e "\n #### secretGen\n" + /kaz/bin/secretGen.sh + + #possibilité de lancer vagrant up NOKAZ="true" quand on construit la machine + if [ "${NOKAZ}" == "true" ]; then + echo "on ne lance pas install.sh" + else + echo "on lance install.sh" + /kaz/bin/install.sh + fi + + # clear apt cache + DEBIAN_FRONTEND=noninteractive apt-get autoremove -y + DEBIAN_FRONTEND=noninteractive apt-get clean + + echo "########## ********** End kaz.sh $(date +%D-%T)" +) > >(tee ${DebugLog}stdout.log) 2> >(tee ${DebugLog}stderr.log >&2) diff --git a/files/kaz/config/container-mail.list b/files/kaz/config/container-mail.list new file mode 100644 index 0000000..921c9f5 --- /dev/null +++ b/files/kaz/config/container-mail.list @@ -0,0 +1,3 @@ +# e-mail server composer +postfix +sympa diff --git a/files/kaz/config/container-orga.list b/files/kaz/config/container-orga.list new file mode 100644 index 0000000..799bea5 --- /dev/null +++ b/files/kaz/config/container-orga.list @@ -0,0 +1 @@ +# orga composer diff --git a/files/kaz/config/container-proxy.list b/files/kaz/config/container-proxy.list new file mode 100644 index 0000000..125f526 --- /dev/null +++ b/files/kaz/config/container-proxy.list @@ -0,0 +1 @@ +proxy diff --git a/files/kaz/config/container-withMail.list b/files/kaz/config/container-withMail.list new file mode 100644 index 0000000..79a3639 --- /dev/null +++ b/files/kaz/config/container-withMail.list @@ -0,0 +1,9 @@ +cloud +dokuwiki +#framadate +garradin +gitea +jirafeau +#mattermost +roundcube +#keycloak diff --git a/files/kaz/config/container-withoutMail.list b/files/kaz/config/container-withoutMail.list new file mode 100644 index 0000000..7d87ccc --- /dev/null +++ b/files/kaz/config/container-withoutMail.list @@ -0,0 +1,10 @@ +cachet +jirafeau +ethercalc +collabora +ethercalc +etherpad +ldap +quotas +web +#vigilo diff --git a/files/kaz/config/dockers.env b/files/kaz/config/dockers.env new file mode 100644 index 0000000..7557688 --- /dev/null +++ b/files/kaz/config/dockers.env @@ -0,0 +1,120 @@ +# Les variables d'environnements utilisées +# par les dockers via le lien : +# .env -> ../../config/dockers.env + +####################################### +# prod / dev / local +mode=local + +######################################## +# choix du domaine +# prod=kaz.bzh / dev=dev.kaz.bzh / local=kaz.local +domain=kaz.local + +######################################## +# choix du domaine des mails sympa +# prod=kaz.bzh / dev=kaz2.ovh / local=kaz.local +domain_sympa=kaz.local + +######################################## +# choix d'un serveur partiel +# site=site-2 +site= + +######################################## +# Pour garradin qui met en "dure" dans +# sa config l'URL pour l'atteindre + +# prod=https (gandi) / dev=https (letsencrypt) / local=http +httpProto=https + +# prod=89.234.186.111 / dev=192.168.57.1 / local=127.0.0.1 +MAIN_IP=127.0.0.1 + +# prod=89.234.186.151 / dev=192.168.57.2 / local=127.0.0.2 +SYMPA_IP=127.0.0.2 + +######################################## +# noms des services + +# ou www (mais bof) +webHost= + +cachetHost=cachet +calcHost=tableur +cloudHost=cloud +dateHost=sondage +dokuwikiHost=wiki +fileHost=depot +garHost=garradin +gitHost=git +gravHost=grav +ldapHost=ldap +matterHost=agora +officeHost=office +padHost=pad +quotasHost=quotas +smtpHost=smtp +sympaHost=listes +vigiloHost=vigilo +webmailHost=webmail +wordpressHost=wp + +######################################## +# noms des containers + +cachetServName=cachetServ +dokuwikiServName=dokuwikiServ +ethercalcServName=ethercalcServ +etherpadServName=etherpadServ +framadateServName=framadateServ +garradinServName=garradinServ +gitServName=gitServ +gravServName=gravServ +jirafeauServName=jirafeauServ +ldapServName=ldapServ +mattermostServName=mattermostServ +nextcloudServName=nextcloudServ +officeServName=officeServ +proxyServName=proxyServ +quotasServName=quotasServ +roundcubeServName=roundcubeServ +smtpServName=mailServ +sympaServName=sympaServ +vigiloServName=vigiloServ +webServName=webServ +wordpressServName=wpServ + +cachetDBName=cachetDB +ethercalcDBName=ethercalcDB +etherpadDBName=etherpadDB +framadateDBName=framadateDB +gitDBName=gitDB +mattermostDBName=mattermostDB +nextcloudDBName=nextcloudDB +quotasDBName=quotasDB +roundcubeDBName=roundcubeDB +sympaDBName=sympaDB +vigiloDBName=vigiloDB +wordpressDBName=wpDB + +ldapIUName=ldapIU + +######################################## +# politique de redémarrage +# prod=always / test=unless-stopped / local=no +restartPolicy=no + +######################################## +# devrait être dans env-jirafeauServ +# mais seuls les variables de ".env" sont +# utilisables pour le montage des volumes + +jirafeauDir=/var/jirafeauData/lkuDM16R5Sp4QHr/ + +ldapRoot=dc=kaz,dc=local + +######################################## +# services activés par container.sh +# variables d'environneements utilisées +# pour le tmpl du mandataire (proxy) diff --git a/files/keyboard b/files/keyboard new file mode 100644 index 0000000..cc70e02 --- /dev/null +++ b/files/keyboard @@ -0,0 +1,10 @@ +# KEYBOARD CONFIGURATION FILE + +# Consult the keyboard(5) manual page. + +XKBMODEL="pc105" +XKBLAYOUT="fr" +XKBVARIANT="latin9" +XKBOPTIONS="terminate:ctrl_alt_bksp" + +BACKSPACE="guess" diff --git a/files/provision.sh b/files/provision.sh new file mode 100755 index 0000000..3035181 --- /dev/null +++ b/files/provision.sh @@ -0,0 +1,315 @@ +#!/bin/bash + +if [ -z "${KAZGUARD}" ] ; then + exit 1 +fi + +resize2fs /dev/sda1 + +DIR=$(cd "$(dirname $0)"; pwd) +cd "${DIR}" +set -e +export VAGRANT_SRC_DIR=/vagrant/files + +mkdir -p "${VAGRANT_SRC_DIR}/log/" +export DebugLog="${VAGRANT_SRC_DIR}/log/log-vagrant-$(date +%y-%m-%d-%T)-" +( + echo "########## ********** Start Vagrant $(date +%D-%T)" + #pour la résolution de noms dans /etc/hosts + SERVICES_LIST="smtp mail ldap www depot tableur pad webmail sondage garradin test-garradin wiki git agora cloud office cachet quotas" + + # Copie de qques fichiers + cp "${VAGRANT_SRC_DIR}/keyboard" /etc/default/keyboard + + # Lock grub (https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1758060.html) + sysctl -w net.ipv4.ip_forward=1 + DEBIAN_FRONTEND=noninteractive apt-mark hold grub* + + # MAJ et install + sed -i -e 's/main.*/main contrib non-free/' /etc/apt/sources.list + if [ -f "${VAGRANT_SRC_DIR}/.apt-mirror-config" ]; then + # pour ceux qui disposent d'un cache apt local et pas la fibre + # suffit d'indiquer "host:port" dans le fichier ".apt-mirror-config" + . "${VAGRANT_SRC_DIR}/.apt-mirror-config" + sed -i \ + -e "s%s\?://deb.debian.org%://${APT_MIRROR_DEBIAN}%g" \ + -e "s%s\?://security.debian.org%://${APT_MIRROR_DEBIAN_SECURITY}%g" \ + -e "s%s\?://archive.ubuntu.com%://${APT_MIRROR_UBUNTU}%g" \ + -e "s%s\?://security.ubuntu.com%://${APT_MIRROR_UBUNTU_SECURITY}%g" \ + /etc/apt/sources.list + fi + + DEBIAN_FRONTEND=noninteractive apt-get --allow-releaseinfo-change update + DEBIAN_FRONTEND=noninteractive apt-get -y upgrade + DEBIAN_FRONTEND=noninteractive apt-get -y dist-upgrade + DEBIAN_FRONTEND=noninteractive apt-get install -y apg curl git sudo unzip rsync firefox-esr tcpdump net-tools mousepad wireshark swapspace whois ldap-utils # could be with --no-install-recommends + DEBIAN_FRONTEND=noninteractive apt-get install -y xfce4 lightdm xfce4-terminal xserver-xorg gitk # needs to install recommends + + ssh-keygen -t rsa -b 4096 -N '' <<<$'\ny' + rsync /root/.ssh/id_rsa.pub /root/.ssh/authorized_keys + + # Pour le confort de chacun + # Le fihcier .customDocker.sh contient + # DEBIAN_FRONTEND=noninteractive apt-get install -y joe + # DEBIAN_FRONTEND=noninteractive apt-get install -y emacs + # DEBIAN_FRONTEND=noninteractive apt-get install -y vim + if [ -f "${VAGRANT_SRC_DIR}/.customDocker.sh" ]; then + chmod a+x "${VAGRANT_SRC_DIR}/.customDocker.sh" + "${VAGRANT_SRC_DIR}/.customDocker.sh" + fi + + + + # Localisation du $LANG, en par défaut, timezone Paris + if [ -z "${HOSTLANG}" ] ; then + HOSTLANG="en_US.UTF-8" + fi + echo "Europe/Paris" > /etc/timezone + ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime + dpkg-reconfigure -f noninteractive tzdata + sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen + sed -i -e "s/# ${HOSTLANG} /${HOSTLANG} /" /etc/locale.gen + echo "LANG=\"${HOSTLANG}\"">/etc/default/locale + dpkg-reconfigure --frontend=noninteractive locales || true # don't fail for a locales problem + update-locale LANG=${HOSTLANG} || true # don't fail for a locales problem + + + echo -e "\n #### create user\n" + # Creation des utilisateurs + usermod -p $(mkpasswd --method=sha-512 root) root + useradd -m -s "/bin/bash" -p $(mkpasswd --method=sha-512 debian) debian || true # don't fail if user already exists + + # augmentation de la taille de /run si lowmem + #echo "tmpfs /run tmpfs nosuid,noexec,size=26M 0 0" >> /etc/fstab + #mount -o remount /run + + # Désactivation de la mise en veille de l'écran + mkdir -p /etc/X11/xorg.conf.d/ + rsync -a "${VAGRANT_SRC_DIR}/10-monitor.conf" /etc/X11/xorg.conf.d/ + # mv /etc/xdg/autostart/light-locker.desktop /etc/xdg/autostart/light-locker.desktop.bak + DEBIAN_FRONTEND=noninteractive apt-get remove --purge -y light-locker + + #faut virer exim, il fout la grouille avec le docker postfix + DEBIAN_FRONTEND=noninteractive apt-get remove --purge -y exim4-base exim4-config exim4-daemon-light + + #login ssh avec mot de passe + sed -i "s/PasswordAuthentication no/PasswordAuthentication yes/" /etc/ssh/sshd_config + if ! grep -q "PasswordAuthentication yes" /etc/ssh/sshd_config 2>/dev/null; then + echo "PasswordAuthentication yes" >> /etc/ssh/sshd_config + fi + + # autorisation du routing et augmentation inotify + if ! grep -q "net.ipv4.ip_forward" /etc/sysctl.conf 2>/dev/null; then + echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf + fi + sed -i "s/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/" /etc/sysctl.conf + if ! grep -q "fs.inotify.max_queued_events" /etc/sysctl.conf 2>/dev/null; then + echo -e "fs.inotify.max_queued_events=1048576\nfs.inotify.max_user_instances=1048576\nfs.inotify.max_user_watches=1048576" >> /etc/sysctl.conf + fi + sysctl -p + + + # enable bash autocompletion + if ! grep -q "/usr/share/bash-completion/bash_completion" /etc/bash.bashrc 2>/dev/null; then + cat >> /etc/bash.bashrc </dev/null; then + echo -e "[Configuration]\nShortcutsNoMnemonics=TRUE" >> "${TERM_CFG}" + fi + + echo -e "\n #### set swapspace\n" + # free swapspace at shutdown + sed -i -e 's/ExecStart=\/usr\/sbin\/swapspace/ExecStart=\/usr\/sbin\/swapspace\nExecStop=\/usr\/sbin\/swapspace -e/' /lib/systemd/system/swapspace.service + systemctl daemon-reload + + # limit journald log size + mkdir -p /etc/systemd/journald.conf.d + if [ ! -f /etc/systemd/journald.conf.d/sizelimit.conf ]; then + cat > /etc/systemd/journald.conf.d/sizelimit.conf </dev/null; then + cat >> /root/.bashrc < /usr/lib/firefox-esr/distribution/policies.json << EOF +{ + "policies": { + "Certificates": { + "ImportEnterpriseRoots": true, + "Install": ["/etc/letsencrypt/local/rootCA.pem"] + } + } +} +EOF + fi + + #***********FIN CERTIF******************* + + #ajout des services dans le host + echo -e "\n #### update /etc/hosts\n" + if ! grep -q "\skaz.local\b" /etc/hosts 2>/dev/null; then + echo "127.0.0.1 kaz.local" >>/etc/hosts + fi + if ! grep -q "\slistes.kaz.local\b" /etc/hosts 2>/dev/null; then + echo "127.0.0.2 listes.kaz.local" >>/etc/hosts + fi + for SERVICE in ${SERVICES_LIST}; do + if ! grep -q "\s${SERVICE}.kaz.local\b" /etc/hosts 2>/dev/null; then + sed -i /etc/hosts \ + -e "/\skaz.local\b/ s/$/ ${SERVICE}.kaz.local/" + fi + done + + echo -e "\n #### clawsmail\n" + # les scripts de créations de BAL pour clawsmail + cp -ar "${VAGRANT_SRC_DIR}/clawsmail" / + cd /clawsmail + chmod +x addclawsuser.sh + chmod +x genpasswd + + #client pour tester la messagerie + DEBIAN_FRONTEND=noninteractive apt-get install -y claws-mail + + # On met le KAZGUARD pour la mise au point + echo "export KAZGUARD='true'" >> /root/.bashrc + + + # echo -e "\n #### rsync download\n" + # [ -d "${VAGRANT_SRC_DIR}/kaz/download" ] && + # rsync -a "${VAGRANT_SRC_DIR}/kaz/download/" /kaz/download/ + # [ -d "${VAGRANT_SRC_DIR}/kaz/git" ] && + # rsync -a "${VAGRANT_SRC_DIR}/kaz/git/" /kaz/git/ + # [ -f "${VAGRANT_SRC_DIR}/kaz/config/dockers.env" ] && + # [ ! -f "/kaz/config/dockers.env" ] && + # rsync -a "${VAGRANT_SRC_DIR}/kaz/config/dockers.env" /kaz/config/dockers.env + # for type in mail orga proxy withMail withoutMail ; do + # [ -f "${VAGRANT_SRC_DIR}/kaz/config/container-${type}.list" ] && + # [ ! -f "/kaz/config/config/container-${type}.list" ] && + # rsync -a "${VAGRANT_SRC_DIR}/kaz/config/container-${type}.list" /kaz/config/ + # done + # + # echo -e "\n #### secretGen\n" + # /kaz/bin/secretGen.sh + # + # #possibilité de lancer vagrant up NOKAZ="true" quand on construit la machine + # if [ "${NOKAZ}" == "true" ]; then + # echo "on ne lance pas install.sh" + # else + # echo "on lance install.sh" + # /kaz/bin/install.sh + # fi + + ${VAGRANT_SRC_DIR}/kaz.sh + + # clear apt cache + DEBIAN_FRONTEND=noninteractive apt-get autoremove -y + DEBIAN_FRONTEND=noninteractive apt-get clean + + echo "########## ********** End Vagrant $(date +%D-%T)" +) > >(tee ${DebugLog}stdout.log) 2> >(tee ${DebugLog}stderr.log >&2) + +reboot diff --git a/files/test.html b/files/test.html new file mode 100644 index 0000000..380cc4d --- /dev/null +++ b/files/test.html @@ -0,0 +1,15 @@ + + https://kaz.local
+ https://www.kaz.local
+ https://depot.kaz.local
+ https://tableur.kaz.local
+ https://pad.kaz.local
+ https://webmail.kaz.local
+ https://sondage.kaz.local
+ https://test-garradin.kaz.local
+ https://wiki.kaz.local
+ https://git.kaz.local
+ https://office.kaz.local
+ https://cloud.kaz.local
+ https://agora.kaz.local
+ diff --git a/init.sh b/init.sh new file mode 100755 index 0000000..285a2b0 --- /dev/null +++ b/init.sh @@ -0,0 +1,162 @@ +#!/bin/bash + +### Personalisation de la VM + +cd "$(dirname $0)" + +BOLD='' +RED='' +GREEN='' +YELLOW='' +BLUE='' +MAGENTA='' +CYAN='' +NC='' # No Color +NL=' +' + +mkdir -p ./files/kaz/log/ ./files/kaz/download/ ./files/kaz/git/ +chmod a+rxw ./files/kaz/log/ ./files/kaz/download/ ./files/kaz/git/ + +cp Vagrantfile.dist Vagrantfile + +OLD_MEN=$(grep vb.memory Vagrantfile | sed -e 's%.*vb.memory\s*=\s*"\([^"]*\)".*%\1%') +OLD_CUPS=$(grep vb.cpus Vagrantfile | sed -e 's%.*vb.cpus\s*=\s*"\([^"]*\)".*%\1%') +MEM=$(expr $(head -1 /proc/meminfo | awk '{print $2}') / 4096) +CUP=$(expr $(nproc) / 2) + +cat < ${MEM} + CUP: ${OLD_CUPS} => ${CUP} +${NC} +Update './Vagrantfile' +EOF + +sed -i Vagrantfile \ + -e 's%vb.memory\s*=\s*"[^"]*"%vb.memory = "'${MEM}'"%' \ + -e 's%vb.cpus\s*=\s*"[^"]*"%vb.cpus = "'${CUP}'"%' + + +APT_CONF="files/.apt-mirror-config" +if [ -f "${APT_CONF}" ]; then + . "${APT_CONF}" +fi + +### Personalisation d'un cache apt +if [ -z "${APT_MIRROR_DEBIAN}" ]; then + APT_MIRROR_DEBIAN=$(grep "deb\s.*/debian[^-]" /etc/apt/sources.list | head -1 | sed -e "s%.*deb\s.*://\([^/]*\)/debian.*%\1%") +fi +if [ -z "${APT_MIRROR_DEBIAN_SECURITY}" ]; then + APT_MIRROR_DEBIAN_SECURITY=$(grep "deb\s.*/debian-security" /etc/apt/sources.list | head -1 | sed -e "s%.*deb\s.*://\([^/]*\)/debian-security.*%\1%") +fi +if [ -z "${APT_MIRROR_UBUNTU}" ]; then + APT_MIRROR_UBUNTU=$(grep "deb\s.*://\([^/]*\)/ubuntu" /etc/apt/sources.list | head -1 | sed -e "s%.*deb\s.*://\([^/]*\)/ubuntu.*%\1%") +fi +if [ -z "${APT_MIRROR_UBUNTU_SECURITY}" ]; then + APT_MIRROR_UBUNTU_SECURITY=$(grep "deb\s.*://\([^/]*\)/ubuntu.*-security" /etc/apt/sources.list | head -1 | sed -e "s%.*deb\s.*://\([^/]*\)/ubuntu.*%\1%") +fi + +if [ -z "${APT_MIRROR_UBUNTU}" ]; then + APT_MIRROR_UBUNTU="${APT_MIRROR_DEBIAN}" +fi +if [ -z "${APT_MIRROR_UBUNTU_SECURITY}" ]; then + APT_MIRROR_UBUNTU_SECURITY="${APT_MIRROR_DEBIAN_SECURITY}" +fi + +while : ; do + cat < "${APT_CONF}" < "${PROXY_CONF}" < "${CUSTOM_CONF}" + fi + chmod a+x "${CUSTOM_CONF}" + if ! grep -qw "${editor}" "${CUSTOM_CONF}" 2> /dev/null ; then + echo "DEBIAN_FRONTEND=noninteractive apt-get install -y ${editor}" >> "${CUSTOM_CONF}" + echo "rsync -a /vagrant/files/.emacs* /root/" >> "${CUSTOM_CONF}" + fi + break;; + ""|[Nn]* ) break;; + * ) echo "Please answer joe, emacs, vim or no.";; + esac +done diff --git a/sparsify.sh b/sparsify.sh new file mode 100755 index 0000000..05749db --- /dev/null +++ b/sparsify.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +set -e + +# Get HD filename +FILENAME=`vboxmanage showvminfo kaz-dev-amd64 | grep SATA | grep UUID | cut -d':' -f2 | cut -d'(' -f1 | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//'` + +# Split the dir and filename +DIR=`dirname "$FILENAME"` +FILE=`basename "$FILENAME"` + +# Get HD UUID +UUID=`vboxmanage showvminfo kaz-dev-amd64 | grep SATA | grep UUID | cut -d':' -f 3| cut -d')' -f1 | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//'` + +# echo -e $DIR +# echo -e $FILE +# echo -e $UUID + +echo "Old disk is at $DIR/$FILE, moving it away to $DIR/old.vmdk..." +mv -v "$DIR/$FILE" "$DIR/old.vmdk" +echo +echo "Creating a new sparsed disk at $DIR/$FILE from $DIR/old.vmdk..." +virt-sparsify "$DIR/old.vmdk" "$DIR/$FILE" +echo +echo "Setting UUID to $UUID..." +vboxmanage internalcommands sethduuid "$DIR/$FILE" $UUID +echo +echo "Old virtual disk has been moved to $DIR/old.vmdk, you can now confirm its deletion" +rm -iv "$DIR/old.vmdk"