Maintenance Technician
$29.5 - $33 per hourDanfoss LLC
${titleText} `); let grid = columnOne.querySelector('.job-grid'); let allTokens = Array.from(columnOne.querySelectorAll('.joblayouttoken')); // --- 1. CAPTURE VARIABLES FOR BUSINESS RULES --- let jobLocationValue = ""; let countryRegionValue = ""; let regionValue = ""; let ipeLevelValue = null; let employeeGroupValue = ""; // --- INTERNAL USER VALIDATION VIA CUSTOM PLUGIN --- // Reads global flags injected by the authentication plugin let pluginWindowCheck = !!window.isSFInternalUser; let pluginSessionCheck = sessionStorage.getItem('SF_Internal_User') === 'true'; let isInternalPortal = pluginWindowCheck || pluginSessionCheck; // Iterate through all tokens to capture their values before manipulating the DOM allTokens.forEach(el => { let labelEl = el.querySelector('.joblayouttoken-label'); if (!labelEl) return; let labelText = labelEl.innerText; let propId = generatePropertyId(labelText); let valueEl = el.querySelector('.rtltextaligneligible'); let valueText = valueEl ? valueEl.textContent.trim() : ""; if (propId === "JobLocation") { jobLocationValue = valueText; } else if (propId === "CountryRegion") { countryRegionValue = valueText; } else if (propId === "Region") { regionValue = valueText; } else if (propId === "IPELevel") { let match = valueText.match(/d+/); if (match) ipeLevelValue = parseInt(match[0], 10); } else if (propId === "EmployeeGroup") { employeeGroupValue = valueText.toLowerCase(); } }); // --- 2. BUSINESS RULES VALIDATION --- let isSalaryPaid = employeeGroupValue.includes('salary'); let isIpeValid = ipeLevelValue !== null && ipeLevelValue <= 61; // Normalize locations for matching let fullLocationLower = (jobLocationValue + " " + countryRegionValue).toLowerCase(); let isUSJob = fullLocationLower.includes("usa") || fullLocationLower.includes("united states"); let allowedUSStates = ["california", "colorado", "delaware", "hawaii", "illinois", "maryland", "massachusetts", "minnesota", "nevada", "new jersey", "new york", "vermont", "washington", "d.c."]; let allowedUSAbbr = ["ca", "co", "de", "hi", "il", "md", "ma", "mn", "nv", "nj", "ny", "vt", "wa", "dc"]; let allowedGlobalCountries = ["austria", "slovakia", "lithuania", "latvia", "canada"]; // Salary Range Visibility Rule let isSalaryLocationValid = false; if (isUSJob) { let hasFullStateName = allowedUSStates.some(state => fullLocationLower.includes(state)); let hasStateAbbr = allowedUSAbbr.some(abbr => { let regex = new RegExp(`${abbr}`); return regex.test(fullLocationLower); }); isSalaryLocationValid = hasFullStateName || hasStateAbbr; } else { isSalaryLocationValid = allowedGlobalCountries.some(country => fullLocationLower.includes(country)); } // Job Level Visibility Rule (Legacy locations + EER Region) let allowedJobLevelLocations = ["austria", "slovakia", "lithuania", "latvia"]; let isJobLevelLocationValid = allowedJobLevelLocations.some(loc => fullLocationLower.includes(loc)); let isEERRegion = regionValue.toUpperCase().trim() === "EER"; // Final flags to determine if the fields should be shown let showSalaryRange = isSalaryLocationValid && isIpeValid && isSalaryPaid; let showJobLevel = (isJobLevelLocationValid || isEERRegion) && isIpeValid && isSalaryPaid && isInternalPortal; // --- 3. TOKEN PROCESSING AND DISPLAY --- let keepAddingToGrid = true; allTokens.forEach(el => { // Stop adding elements to the grid once the job description starts if (!keepAddingToGrid || el.querySelector('[itemprop="description"]')) { return; } let labelEl = el.querySelector('.joblayouttoken-label'); if (labelEl) { let labelText = labelEl.innerText; let customPropertyid = generatePropertyId(labelText); // --- ABSOLUTE REMOVAL OF LOGIC-ONLY TOKENS --- if ( customPropertyid === "EmployeeGroup" || customPropertyid === "CountryRegion" || customPropertyid === "Region" || customPropertyid === "IPELevel" ) { el.style.display = 'none'; // Force visual hiding el.remove(); // Remove from DOM return; } // --- APPLY VISIBILITY BUSINESS FILTERS --- if (customPropertyid === "SalaryRange" && !showSalaryRange) { el.style.display = 'none'; el.remove(); return; } if (customPropertyid === "JobLevel" && !showJobLevel) { el.style.display = 'none'; el.remove(); return; } // Cosmetic adjustment for short labels if (labelText.includes("(Short)")) { labelEl.innerText = labelText.replace(/(Short)/g, "(s)"); } // Append custom icons based on the mapped property ID let elType = labelEl.nextElementSibling; if (elType) { let icon = ''; let iconUrl = ''; switch (customPropertyid) { case 'JobLocation': icon = 'glyphicon-map-marker'; break; case 'BusinessUnit': icon = 'glyphicon-briefcase'; break; case 'JobCategory': icon = 'glyphicon-dashboard'; break; case 'EmploymentType': icon = 'glyphicon-star-empty'; break; case 'ReqID': icon = 'glyphicon-calendar'; break; case 'WorkLocationType': icon = 'glyphicon-paste'; break; case 'JobLevel': iconUrl = ''; break; case 'SalaryRange': iconUrl = ''; break; case 'TAPartner': iconUrl = ''; break; default: icon = ''; } let iconHtml = ''; if (icon) { iconHtml = ``; } else if (iconUrl) { iconHtml = ``; } labelEl.parentElement.insertAdjacentHTML('beforebegin', `
${iconHtml}`); let wrapper = el.querySelector(`.job-token-${customPropertyid}-wrapper`); wrapper.appendChild(labelEl.parentElement); // Clean up empty text nodes let emptySibling = document.querySelector(`.job-token-${customPropertyid}-wrapper`).nextSibling; if(emptySibling && emptySibling.nodeType === 3) emptySibling.remove(); } // Flag to stop processing grid items when TA Partner is reached if (customPropertyid === "TAPartner") { keepAddingToGrid = false; } } grid.appendChild(el); }); }});/** * Robust Mapping Function * Scans the label for keywords, effectively bypassing any issues caused by translations. */function generatePropertyId(jobLayoutTokenLabel) { let normalized = jobLayoutTokenLabel.toLowerCase(); // Helper function to search for keywords regardless of formatting or active language const contains = (arr) => arr.some(keyword => normalized.includes(keyword)); if (contains(["employee group"])) return "EmployeeGroup"; if (contains(["ipe level", "ipe"])) return "IPELevel"; // Order matters: 'country' will correctly match 'country/region' if (contains(["country", "land", "pas", "pays", "paese", "kraj", "krajina"])) return "CountryRegion"; if (contains(["region", "regin", "rgion", "??????", "??"])) return "Region"; if (contains(["posting job location", "joblokation", "job location", "jobsted", "arbeitsort", "ubicacin", "site de l'emploi", "lokalizacja", "??????????????", "miesto", "????", "sede di lavoro"])) return "JobLocation"; if (contains(["salary range", "recruitment salary", "lninterval", "gehaltsspanne", "przedzia? wynagrodzenia", "fourchette", "rango salarial", "mzdov rozptie", "lnramme", "???????? ????????"])) return "SalaryRange"; if (contains(["posting job level", "job level", "jobniveau", "joblevel", "nivel del puesto", "niveau du poste", "poziom stanowiska", "??????? ?????????", "rove? pozcie"])) return "JobLevel"; if (contains(["employment type", "ansttelse", "beschftigungsart", "tipo de emprego", "type d'emploi", "rodzaj zatrudnienia", "??? ?????????", "typ pracovnho pomeru", "????", "tipologia di impiego", "tipo de empleo"])) return "EmploymentType"; if (contains(["work location type", "arbejdsstedstype", "arbeitsmodell", "tipo de ubicacion", "emplacement de travail", "miejsca pracy", "?????? ??????", "vkonu prce", "??????", "modalit di lavoro"])) return "WorkLocationType"; if (contains(["job category", "jobkategori", "stellenkategorie", "categora", "catgorie", "kategoria", "????????? ?????????", "kategria", "????", "area professionale"])) return "JobCategory"; if (contains(["business unit", "segment", "segmento", "firmaenhed", "unternehmenseinheit", "jednostka biznesowa", "???????", "????"])) return "BusinessUnit"; if (contains(["req id", "rek-id", "kennung", "id de solicitud", "identifiant de la demande", "identyfikator", "?????????????", "id pracovn pozcie", "?? id", "identifika?n", "id posizione", "requisition id", "stellen-id"])) return "ReqID"; if (contains(["ta partner", "partenaire ta"])) return "TAPartner"; // Default fallback if no keywords are matched return jobLayoutTokenLabel.replace(/[s:()][]/g,'');}
Req ID: 46347
Job Location: Freeport IL, US
Employment Type: Full Time
Segment: Danfoss Power Solutions Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: Maintenance Mechanic / 2nd Shift
Job Description The candidate in this role will maintain and repair machine tools used in manufacturing production and testing. They are responsible for conducting repairs, preventive maintenance (PM), modifications, installations, and rearrangements of both building and production equipment and systems. This is a 2nd Shift position, Monday through Friday, from 3:00 p.m. to 11:00 p.m., offering a pay range of $29.50 to $33.00 per hour, depending on experience. Additionally, there is a $1,500 sign-on bonus, with $750 awarded after 3 months and another $750 after 6 months. Employees are eligible for benefits on the first day of employment which include medical, dental, vision, 401(k), tuition reimbursement, annual bonus program, paid parental leave for birthing and non-birthing parents, a great working environment including 100% climate-controlled facility and much more! Danfoss offers 3 weeks paid PTO accrued over each bi-weekly paycheck plus 13 paid holidays including annual paid shutdown week between Christmas and New Year's. We pride ourselves on growing our human potential and encouraging career growth within our facilities.
Job Responsibilities Repair of machines used in production including chuck repair, replacing hydraulic oil hoses and leaks, replacing lube blocks, valves, belts, cylinders, seals. Also aligns turrets, spindles, and tailstock. Repairs chip conveyors and tanks and resolves bearing issues. Electrical repair includes replacing switches, solenoids, cooling fans, fuses relays and contactors.
Performs preventative maintenance on all machines. Finds root cause fixes using 8-D and 4-step problems solving analysis.
Background and Skills
Information at a Glance
${iconHtml}`); let wrapper = el.querySelector(`.job-token-${customPropertyid}-wrapper`); wrapper.appendChild(labelEl.parentElement); // Clean up empty text nodes let emptySibling = document.querySelector(`.job-token-${customPropertyid}-wrapper`).nextSibling; if(emptySibling && emptySibling.nodeType === 3) emptySibling.remove(); } // Flag to stop processing grid items when TA Partner is reached if (customPropertyid === "TAPartner") { keepAddingToGrid = false; } } grid.appendChild(el); }); }});/** * Robust Mapping Function * Scans the label for keywords, effectively bypassing any issues caused by translations. */function generatePropertyId(jobLayoutTokenLabel) { let normalized = jobLayoutTokenLabel.toLowerCase(); // Helper function to search for keywords regardless of formatting or active language const contains = (arr) => arr.some(keyword => normalized.includes(keyword)); if (contains(["employee group"])) return "EmployeeGroup"; if (contains(["ipe level", "ipe"])) return "IPELevel"; // Order matters: 'country' will correctly match 'country/region' if (contains(["country", "land", "pas", "pays", "paese", "kraj", "krajina"])) return "CountryRegion"; if (contains(["region", "regin", "rgion", "??????", "??"])) return "Region"; if (contains(["posting job location", "joblokation", "job location", "jobsted", "arbeitsort", "ubicacin", "site de l'emploi", "lokalizacja", "??????????????", "miesto", "????", "sede di lavoro"])) return "JobLocation"; if (contains(["salary range", "recruitment salary", "lninterval", "gehaltsspanne", "przedzia? wynagrodzenia", "fourchette", "rango salarial", "mzdov rozptie", "lnramme", "???????? ????????"])) return "SalaryRange"; if (contains(["posting job level", "job level", "jobniveau", "joblevel", "nivel del puesto", "niveau du poste", "poziom stanowiska", "??????? ?????????", "rove? pozcie"])) return "JobLevel"; if (contains(["employment type", "ansttelse", "beschftigungsart", "tipo de emprego", "type d'emploi", "rodzaj zatrudnienia", "??? ?????????", "typ pracovnho pomeru", "????", "tipologia di impiego", "tipo de empleo"])) return "EmploymentType"; if (contains(["work location type", "arbejdsstedstype", "arbeitsmodell", "tipo de ubicacion", "emplacement de travail", "miejsca pracy", "?????? ??????", "vkonu prce", "??????", "modalit di lavoro"])) return "WorkLocationType"; if (contains(["job category", "jobkategori", "stellenkategorie", "categora", "catgorie", "kategoria", "????????? ?????????", "kategria", "????", "area professionale"])) return "JobCategory"; if (contains(["business unit", "segment", "segmento", "firmaenhed", "unternehmenseinheit", "jednostka biznesowa", "???????", "????"])) return "BusinessUnit"; if (contains(["req id", "rek-id", "kennung", "id de solicitud", "identifiant de la demande", "identyfikator", "?????????????", "id pracovn pozcie", "?? id", "identifika?n", "id posizione", "requisition id", "stellen-id"])) return "ReqID"; if (contains(["ta partner", "partenaire ta"])) return "TAPartner"; // Default fallback if no keywords are matched return jobLayoutTokenLabel.replace(/[s:()][]/g,'');}
Req ID: 46347
Job Location: Freeport IL, US
Employment Type: Full Time
Segment: Danfoss Power Solutions Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: Maintenance Mechanic / 2nd Shift
Job Description The candidate in this role will maintain and repair machine tools used in manufacturing production and testing. They are responsible for conducting repairs, preventive maintenance (PM), modifications, installations, and rearrangements of both building and production equipment and systems. This is a 2nd Shift position, Monday through Friday, from 3:00 p.m. to 11:00 p.m., offering a pay range of $29.50 to $33.00 per hour, depending on experience. Additionally, there is a $1,500 sign-on bonus, with $750 awarded after 3 months and another $750 after 6 months. Employees are eligible for benefits on the first day of employment which include medical, dental, vision, 401(k), tuition reimbursement, annual bonus program, paid parental leave for birthing and non-birthing parents, a great working environment including 100% climate-controlled facility and much more! Danfoss offers 3 weeks paid PTO accrued over each bi-weekly paycheck plus 13 paid holidays including annual paid shutdown week between Christmas and New Year's. We pride ourselves on growing our human potential and encouraging career growth within our facilities.
Job Responsibilities Repair of machines used in production including chuck repair, replacing hydraulic oil hoses and leaks, replacing lube blocks, valves, belts, cylinders, seals. Also aligns turrets, spindles, and tailstock. Repairs chip conveyors and tanks and resolves bearing issues. Electrical repair includes replacing switches, solenoids, cooling fans, fuses relays and contactors.
Performs preventative maintenance on all machines. Finds root cause fixes using 8-D and 4-step problems solving analysis.
Background and Skills
- High School Diploma
- One (1) year certificate from college or technical school
- Three (3) to six (6) months experience
- Equivalent experience and education will be considered
- Three (3) weeks of Paid Time Off annually for newly hired employees
- 13 paid holidays, including floating holidays annually
- Annual Bonus Program
- 401(k) Savings Plan with company match and safe harbor contributions
- Medical, Dental, and Vision Insurance eligibility upon date of hire
- Company paid Basic Life Insurance & AD&D, Short-Term Disability Insurance, and Long-Term Disability Insurance (with enhanced buy up option)
- Optional Life Insurance & AD&D (including Spouse/Child Optional) coverage
- Healthcare Flexible Spending Account, Dependent Care Flexible Spending and a Health Savings Account (including company contribution) if enrolled in applicable Danfoss Medical Plan
- Paid Parental Leave and Adoption Assistance
- Paid Bereavement Leave
- Military Leave Benefits
- Tuition Reimbursement Program
- Reimbursement for industry/organization membership dues, home office expenses, etc., based on established eligibility criteria
- Employee Assistance Program
- Employee Job Referral Bonus Program
- Voluntary benefits such as: Pet Insurance, Legal Assistance and Identity and Fraud Protection, Critical Illness Insurance, Accident Insurance and Hospital Indemnity Insurance
- Additional benefits such as virtual physical therapy sessions, fitness membership programs, and day care provider network assistance
Information at a Glance
Vacancy posted 3 days ago
Similar jobs that could be interesting for youBased on the Maintenance Technician in Freeport, IL vacancy
- ...weekends? Come join a growing production team that offers a Monday - Friday schedule. We have openings for an Industrial Maintenance Technician to join our team. The ideal candidate for this position would have knowledge in a wide variety of maintenance-related...SuggestedHourly payMonday to FridayFlexible hoursWeekend workDay shiftAfternoon shift
- ...with United Rentals! As a Power HVAC Mechanic within the Power/HVAC division at United Rentals, you’ll use your skills to perform maintenance tasks as well as minor repairs on equipment in a safe and professional manner. You will be responsible for the maintenance and...SuggestedHourly pay
- ...United Rentals is seeking a Power HVAC Mechanic to perform maintenance and minor repairs on diesel engines, HVAC, and dehumidification/air purification equipment within the Power/HVAC division. You will service equipment safely, demonstrate it to customers, and contribute...Suggested
$32 - $40 per hour
...Automation Controls Technician Ready to power up your career? Join Berner Food & Beverage, a North American leader in food and beverage... ...Flexible Rotating Schedule (work 14 days a month) The maintenance automation controls technician is responsible for the PLC programming...SuggestedHourly payTemporary workWork at officeRemote workRelocation packageShift workNight shiftWeekend work- # Electrical Maintenance TechnicianManufacturing · Freeport, ILManufacturingFreeport, IL$0k - $0kShare on LinkedIn Email## About This RoleJOB TITLE – Maintenance Electrician TechnicianPosition Summary:Responsible for troubleshooting, maintenance and repair of existing electrical...SuggestedHourly pay
$30 per hour
...Maintenance Technician Our customer in Lena, Illinois, is a manufacturer committed to providing excellent service to their customers and producing quality products. They are seeking motivated individuals to join their team as Maintenance Technicians. As a full-time...Full timeMonday to FridayDay shift$35 per hour
...Maintenance Technician Our customer in Rock City, IL is looking for a Maintenance Technician to perform preventive, corrective, and emergency maintenance on plant equipment and facility systems to ensure safe, efficient, and reliable operations. This role supports...Weekly payMonday to FridayFlexible hoursShift workAfternoon shift- ...performing the duties listed in each level below, you can receive increases to your pay. We have openings for a Quality Control Technician to join our team. The Quality Control Technician is a vital position at Freshpack. The motivated, qualified candidate will help...Hourly payShift workNight shift
- ...Senior Master Technician We are seeking a Senior Master Technician who is Ford-certified to join our team! This individual will be responsible for performing a variety of mechanical services on vehicles, diagnosing and repairing complex mechanical issues, and providing...Local areaFlexible hours
$18.25 - $18.5 per hour
...Maintenance Assistant Heritage Woods of Freeport - Freeport, IL 61032 Overview Salary Range $18.25 - $18.50 Hourly Position Type Full Time Job Shift 1st shift Description Heritage Woods of Freeport is seeking a Maintenance Assistant to join our team! This...Hourly payDaily paidFull timeWork from homeShift workDay shift- ...The Best Teams are Created and Maintained Here. Job Summary The Landscape Maintenance Installation Business Developer is responsible for driving new business growth by identifying, pursuing, and securing contracts for small scale landscape construction services and installation...Full timeFor contractorsWork experience placementWork at officeLocal areaAfternoon shift
- ...specific equipment including an Auto Shredder. ABOUT THE MAINTENANCE ROLE: Actively promote plant safety programs and procedures... ...throughout the Midwest is searching for a Maintenance Technician / Parts in its Rockford, IL location. Alter is committed to our...Hourly pay
$35 per hour
...2nd Shift: 3:00 PM to 11:00 PM 3rd Shift: 11:00 PM to 7:00 AM JOB SUMMARY We are hiring experienced Industrial Maintenance Technicians for a food ingredient manufacturing facility in Rock City, Illinois. This position is ideal for a mechanically strong, self...Hourly payFull timeShift workNight shiftAfternoon shift- ...Job Description Job Description Are you a skilled maintenance tech looking for your next big opportunity? At Kolb Lena, you’re not just fixing machines—you’re shaping the future of our industry with a close-knit team and a workplace where your expertise truly matters...Relocation packageDay shiftAfternoon shift
$26 - $38 per hour
...innovative workplace, making it an attractive destination for skilled maintenance professionals. State-of-the-Art Automation Berner... .... This modern infrastructure ensures that Maintenance Technicians work with the latest systems and play a key role in keeping operations...Hourly payTemporary workShift work- ...Job Description Job Description Responsibilities Support the Preventive Maintenance (PM) program by performing mechanical maintenance, repairs, equipment changeovers, and troubleshooting during line startups to minimize unscheduled downtime. Analyze problems...
- ...associated fire sprinkler system equipment Performing regular maintenance of existing systems Troubleshooting and repairing issues... ...and property. Minimum of 2 years of experience as a Sprinkler Technician Strong knowledge of fire sprinkler systems and related equipment...Temporary workImmediate start
$30 per hour
...Job Description Job Description Maintenance Technician: Orangeville, Illinois Our client in Orangeville, Illinois, is a leading production facility seeking motivated individuals to join their expanding team. As a Maintenance Technician, you will work closely with...Weekly payFull timeLocal areaMonday to FridayShift work- ...is functioning properly. Performs preventive and predictive maintenance on production, packaging, material handling and mechanical equipment... ...hand tools are required to be brought in by the maintenance technician. Competencies Job Knowledge Job Safety Teamwork &...Full timeLocal areaShift workNight shift
- ...Dreambound to find a Electrocardiogram program that will prepare you for this high-demand, entry-level role. What does an ECG / EKG Technician do? An ECG / EKG technician conducts diagnostic tests to measure and record the electrical activity of the heart, helping...Flexible hours
$17 per hour
...takes? Then come grow with us! About the Role (Cultivation Technician): Reporting into the Cultivation Manager, the... ...scans inventory into designated location(s) Proper usage, maintenance and storage of all tools and equipment, including but not limited...Hourly payFull timeWork at office- ...Job Description Job Description Citadel at Saint Joseph Village is seeking a Maintenance Assistant to join their team! The Maintenance Assistant is responsible for the daily maintenance, repair, and overall upkeep of the facility’s interior and exterior areas. This...Daily paidFull timeTemporary workWork experience placement
- ...Are you a hands-on I.T. or Telecom professional looking for something beyond the desk? AMG Tech Support is seeking skilled, driven technicians to support our growing national client base. This role goes far beyond basic helpdesk tasks — one day you might be installing an...Hourly payFor contractorsImmediate startFlexible hours
$21 per hour
...Quality Assurance Technician Wage: $21+/hr (depending on experience) Location: Stephenson County IL Schedule: 6:00PM - 6:00AM, rotating 12-hour shifts Shift: 1st shift Responsibilities Perform routine quality checks on raw materials, in-process products, and finished...Work at officeShift workRotating shiftDay shift$18 - $23 per hour
...innovative workplace, making it an attractive destination for skilled maintenance professionals. State-of-the-Art Automation Berner... .... This modern infrastructure ensures that Maintenance Technicians work with the latest systems and play a key role in keeping operations...Hourly payTemporary workAll shiftsShift work$25 - $26 per hour
...Job Description Job Description Quality Lab Technician – 3rd Shift: Rock City, I llinois Our customer in Rock City, Illinois is a manufacturer that is seeking motivated individuals to join their production team as a Quality Lab Technician on 3rd Shift. As a Quality...Weekly payFull timeWork at officeLocal areaMonday to FridayNight shiftWeekend work$22.5 per hour
...Job Description Job Description Sanitation Technician: Lena, Illinois Our customer in Lena, Illinois, is looking for a hardworking, detail-oriented individual to join their team as a Sanitation Technician to work full-time on 2nd shift. In this role, you will...Weekly payFull timeLocal areaMonday to FridayFlexible hoursShift workWeekend workAfternoon shift
Do you want to receive more vacancies?
Subscribe and receive similar vacancies to Maintenance Technician. Be the first to apply!
Related searches
- skilled maintenance Freeport, IL
- maintenance Freeport, IL
- train maintenance Freeport, IL
- general maintenance Freeport, IL
- maintenance representative Freeport, IL
- full time maintenance Freeport, IL
- trabajo mantenimiento Freeport, IL
- preventive maintenance Freeport, IL
- facilities maintenance Freeport, IL
- planned maintenance Freeport, IL

